25 lines
442 B
C#
25 lines
442 B
C#
namespace Org.BouncyCastle.Asn1;
|
|
|
|
public class DerOctetString : Asn1OctetString
|
|
{
|
|
public DerOctetString(byte[] str)
|
|
: base(str)
|
|
{
|
|
}
|
|
|
|
public DerOctetString(Asn1Encodable obj)
|
|
: base(obj)
|
|
{
|
|
}
|
|
|
|
internal override void Encode(DerOutputStream derOut)
|
|
{
|
|
derOut.WriteEncoded(4, str);
|
|
}
|
|
|
|
internal static void Encode(DerOutputStream derOut, byte[] bytes, int offset, int length)
|
|
{
|
|
derOut.WriteEncoded(4, bytes, offset, length);
|
|
}
|
|
}
|