39 lines
834 B
C#
39 lines
834 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
|
{
|
|
public class DerOctetString
|
|
: Asn1OctetString
|
|
{
|
|
/// <param name="str">The octets making up the octet string.</param>
|
|
public DerOctetString(
|
|
byte[] str)
|
|
: base(str)
|
|
{
|
|
}
|
|
|
|
public DerOctetString(
|
|
Asn1Encodable obj)
|
|
: base(obj)
|
|
{
|
|
}
|
|
|
|
internal override void Encode(
|
|
DerOutputStream derOut)
|
|
{
|
|
derOut.WriteEncoded(Asn1Tags.OctetString, str);
|
|
}
|
|
|
|
internal static void Encode(
|
|
DerOutputStream derOut,
|
|
byte[] bytes,
|
|
int offset,
|
|
int length)
|
|
{
|
|
derOut.WriteEncoded(Asn1Tags.OctetString, bytes, offset, length);
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|