86 lines
2.6 KiB
C#
86 lines
2.6 KiB
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
using System.Text;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
|
|
{
|
|
public class CertificatePolicies
|
|
: Asn1Encodable
|
|
{
|
|
private readonly PolicyInformation[] policyInformation;
|
|
|
|
public static CertificatePolicies GetInstance(object obj)
|
|
{
|
|
if (obj == null || obj is CertificatePolicies)
|
|
return (CertificatePolicies)obj;
|
|
|
|
return new CertificatePolicies(Asn1Sequence.GetInstance(obj));
|
|
}
|
|
|
|
public static CertificatePolicies GetInstance(Asn1TaggedObject obj, bool isExplicit)
|
|
{
|
|
return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit));
|
|
}
|
|
|
|
/**
|
|
* Construct a CertificatePolicies object containing one PolicyInformation.
|
|
*
|
|
* @param name the name to be contained.
|
|
*/
|
|
public CertificatePolicies(PolicyInformation name)
|
|
{
|
|
this.policyInformation = new PolicyInformation[] { name };
|
|
}
|
|
|
|
public CertificatePolicies(PolicyInformation[] policyInformation)
|
|
{
|
|
this.policyInformation = policyInformation;
|
|
}
|
|
|
|
private CertificatePolicies(Asn1Sequence seq)
|
|
{
|
|
this.policyInformation = new PolicyInformation[seq.Count];
|
|
|
|
for (int i = 0; i < seq.Count; ++i)
|
|
{
|
|
policyInformation[i] = PolicyInformation.GetInstance(seq[i]);
|
|
}
|
|
}
|
|
|
|
public virtual PolicyInformation[] GetPolicyInformation()
|
|
{
|
|
return (PolicyInformation[])policyInformation.Clone();
|
|
}
|
|
|
|
/**
|
|
* Produce an object suitable for an ASN1OutputStream.
|
|
* <pre>
|
|
* CertificatePolicies ::= SEQUENCE SIZE {1..MAX} OF PolicyInformation
|
|
* </pre>
|
|
*/
|
|
public override Asn1Object ToAsn1Object()
|
|
{
|
|
return new DerSequence(policyInformation);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
StringBuilder sb = new StringBuilder("CertificatePolicies:");
|
|
if (policyInformation != null && policyInformation.Length > 0)
|
|
{
|
|
sb.Append(' ');
|
|
sb.Append(policyInformation[0]);
|
|
for (int i = 1; i < policyInformation.Length; ++i)
|
|
{
|
|
sb.Append(", ");
|
|
sb.Append(policyInformation[i]);
|
|
}
|
|
}
|
|
return sb.ToString();
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|