add all
This commit is contained in:
63
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/crmf/SinglePubInfo.cs
vendored
Normal file
63
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/crmf/SinglePubInfo.cs
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf
|
||||
{
|
||||
public class SinglePubInfo
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly DerInteger pubMethod;
|
||||
private readonly GeneralName pubLocation;
|
||||
|
||||
private SinglePubInfo(Asn1Sequence seq)
|
||||
{
|
||||
pubMethod = DerInteger.GetInstance(seq[0]);
|
||||
|
||||
if (seq.Count == 2)
|
||||
{
|
||||
pubLocation = GeneralName.GetInstance(seq[1]);
|
||||
}
|
||||
}
|
||||
|
||||
public static SinglePubInfo GetInstance(object obj)
|
||||
{
|
||||
if (obj is SinglePubInfo)
|
||||
return (SinglePubInfo)obj;
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
return new SinglePubInfo((Asn1Sequence)obj);
|
||||
|
||||
throw new ArgumentException("Invalid object: " + Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj");
|
||||
}
|
||||
|
||||
public virtual GeneralName PubLocation
|
||||
{
|
||||
get { return pubLocation; }
|
||||
}
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* SinglePubInfo ::= SEQUENCE {
|
||||
* pubMethod INTEGER {
|
||||
* dontCare (0),
|
||||
* x500 (1),
|
||||
* web (2),
|
||||
* ldap (3) },
|
||||
* pubLocation GeneralName OPTIONAL }
|
||||
* </pre>
|
||||
* @return a basic ASN.1 object representation.
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector v = new Asn1EncodableVector(pubMethod);
|
||||
v.AddOptional(pubLocation);
|
||||
return new DerSequence(v);
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user