add all
This commit is contained in:
56
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/pkcs/CertBag.cs
vendored
Normal file
56
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/pkcs/CertBag.cs
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs
|
||||
{
|
||||
public class CertBag
|
||||
: Asn1Encodable
|
||||
{
|
||||
public static CertBag GetInstance(object obj)
|
||||
{
|
||||
if (obj is CertBag)
|
||||
return (CertBag)obj;
|
||||
if (obj == null)
|
||||
return null;
|
||||
return new CertBag(Asn1Sequence.GetInstance(obj));
|
||||
}
|
||||
|
||||
private readonly DerObjectIdentifier certID;
|
||||
private readonly Asn1Object certValue;
|
||||
|
||||
private CertBag(Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count != 2)
|
||||
throw new ArgumentException("Wrong number of elements in sequence", "seq");
|
||||
|
||||
this.certID = DerObjectIdentifier.GetInstance(seq[0]);
|
||||
this.certValue = Asn1TaggedObject.GetInstance(seq[1]).GetObject();
|
||||
}
|
||||
|
||||
public CertBag(
|
||||
DerObjectIdentifier certID,
|
||||
Asn1Object certValue)
|
||||
{
|
||||
this.certID = certID;
|
||||
this.certValue = certValue;
|
||||
}
|
||||
|
||||
public virtual DerObjectIdentifier CertID
|
||||
{
|
||||
get { return certID; }
|
||||
}
|
||||
|
||||
public virtual Asn1Object CertValue
|
||||
{
|
||||
get { return certValue; }
|
||||
}
|
||||
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return new DerSequence(certID, new DerTaggedObject(0, certValue));
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user