46 lines
777 B
C#
46 lines
777 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
|
{
|
|
/**
|
|
* A Null object.
|
|
*/
|
|
public class DerNull
|
|
: Asn1Null
|
|
{
|
|
public static readonly DerNull Instance = new DerNull(0);
|
|
|
|
byte[] zeroBytes = new byte[0];
|
|
|
|
[Obsolete("Use static Instance object")]
|
|
public DerNull()
|
|
{
|
|
}
|
|
|
|
protected internal DerNull(int dummy)
|
|
{
|
|
}
|
|
|
|
internal override void Encode(
|
|
DerOutputStream derOut)
|
|
{
|
|
derOut.WriteEncoded(Asn1Tags.Null, zeroBytes);
|
|
}
|
|
|
|
protected override bool Asn1Equals(
|
|
Asn1Object asn1Object)
|
|
{
|
|
return asn1Object is DerNull;
|
|
}
|
|
|
|
protected override int Asn1GetHashCode()
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|