- Initial commit
This commit is contained in:
132
Runtime/3rdParty/BouncyCastle/asn1/esf/OtherSigningCertificate.cs
vendored
Normal file
132
Runtime/3rdParty/BouncyCastle/asn1/esf/OtherSigningCertificate.cs
vendored
Normal file
@ -0,0 +1,132 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Esf
|
||||
{
|
||||
/// <remarks>
|
||||
/// <code>
|
||||
/// OtherSigningCertificate ::= SEQUENCE {
|
||||
/// certs SEQUENCE OF OtherCertID,
|
||||
/// policies SEQUENCE OF PolicyInformation OPTIONAL
|
||||
/// }
|
||||
/// </code>
|
||||
/// </remarks>
|
||||
public class OtherSigningCertificate
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly Asn1Sequence certs;
|
||||
private readonly Asn1Sequence policies;
|
||||
|
||||
public static OtherSigningCertificate GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is OtherSigningCertificate)
|
||||
return (OtherSigningCertificate) obj;
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
return new OtherSigningCertificate((Asn1Sequence) obj);
|
||||
|
||||
throw new ArgumentException(
|
||||
"Unknown object in 'OtherSigningCertificate' factory: "
|
||||
+ Org.BouncyCastle.Utilities.Platform.GetTypeName(obj),
|
||||
"obj");
|
||||
}
|
||||
|
||||
private OtherSigningCertificate(
|
||||
Asn1Sequence seq)
|
||||
{
|
||||
if (seq == null)
|
||||
throw new ArgumentNullException("seq");
|
||||
if (seq.Count < 1 || seq.Count > 2)
|
||||
throw new ArgumentException("Bad sequence size: " + seq.Count, "seq");
|
||||
|
||||
this.certs = Asn1Sequence.GetInstance(seq[0].ToAsn1Object());
|
||||
|
||||
if (seq.Count > 1)
|
||||
{
|
||||
this.policies = Asn1Sequence.GetInstance(seq[1].ToAsn1Object());
|
||||
}
|
||||
}
|
||||
|
||||
public OtherSigningCertificate(
|
||||
params OtherCertID[] certs)
|
||||
: this(certs, null)
|
||||
{
|
||||
}
|
||||
|
||||
public OtherSigningCertificate(
|
||||
OtherCertID[] certs,
|
||||
params PolicyInformation[] policies)
|
||||
{
|
||||
if (certs == null)
|
||||
throw new ArgumentNullException("certs");
|
||||
|
||||
this.certs = new DerSequence(certs);
|
||||
|
||||
if (policies != null)
|
||||
{
|
||||
this.policies = new DerSequence(policies);
|
||||
}
|
||||
}
|
||||
|
||||
public OtherSigningCertificate(
|
||||
IEnumerable<OtherCertID> certs)
|
||||
: this(certs, null)
|
||||
{
|
||||
}
|
||||
|
||||
public OtherSigningCertificate(
|
||||
IEnumerable<OtherCertID> certs,
|
||||
IEnumerable<PolicyInformation> policies)
|
||||
{
|
||||
if (certs == null)
|
||||
throw new ArgumentNullException("certs");
|
||||
|
||||
this.certs = new DerSequence(
|
||||
Asn1EncodableVector.FromEnumerable(certs));
|
||||
|
||||
if (policies != null)
|
||||
{
|
||||
this.policies = new DerSequence(
|
||||
Asn1EncodableVector.FromEnumerable(policies));
|
||||
}
|
||||
}
|
||||
|
||||
public OtherCertID[] GetCerts()
|
||||
{
|
||||
OtherCertID[] cs = new OtherCertID[certs.Count];
|
||||
for (int i = 0; i < certs.Count; ++i)
|
||||
{
|
||||
cs[i] = OtherCertID.GetInstance(certs[i].ToAsn1Object());
|
||||
}
|
||||
return cs;
|
||||
}
|
||||
|
||||
public PolicyInformation[] GetPolicies()
|
||||
{
|
||||
if (policies == null)
|
||||
return null;
|
||||
|
||||
PolicyInformation[] ps = new PolicyInformation[policies.Count];
|
||||
for (int i = 0; i < policies.Count; ++i)
|
||||
{
|
||||
ps[i] = PolicyInformation.GetInstance(policies[i].ToAsn1Object());
|
||||
}
|
||||
return ps;
|
||||
}
|
||||
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector v = new Asn1EncodableVector(certs);
|
||||
v.AddOptional(policies);
|
||||
return new DerSequence(v);
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user