add all
This commit is contained in:
34
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/x509/CRLNumber.cs
vendored
Normal file
34
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/x509/CRLNumber.cs
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
|
||||
{
|
||||
/**
|
||||
* The CRLNumber object.
|
||||
* <pre>
|
||||
* CRLNumber::= Integer(0..MAX)
|
||||
* </pre>
|
||||
*/
|
||||
public class CrlNumber
|
||||
: DerInteger
|
||||
{
|
||||
public CrlNumber(
|
||||
BigInteger number)
|
||||
: base(number)
|
||||
{
|
||||
}
|
||||
|
||||
public BigInteger Number
|
||||
{
|
||||
get { return PositiveValue; }
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "CRLNumber: " + Number;
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user