123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.Collections;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Qualified
- {
- /**
- * The SemanticsInformation object.
- * <pre>
- * SemanticsInformation ::= SEQUENCE {
- * semanticsIdentifier OBJECT IDENTIFIER OPTIONAL,
- * nameRegistrationAuthorities NameRegistrationAuthorities
- * OPTIONAL }
- * (WITH COMPONENTS {..., semanticsIdentifier PRESENT}|
- * WITH COMPONENTS {..., nameRegistrationAuthorities PRESENT})
- *
- * NameRegistrationAuthorities ::= SEQUENCE SIZE (1..MAX) OF
- * GeneralName
- * </pre>
- */
- public class SemanticsInformation
- : Asn1Encodable
- {
- private readonly DerObjectIdentifier semanticsIdentifier;
- private readonly GeneralName[] nameRegistrationAuthorities;
- public static SemanticsInformation GetInstance(
- object obj)
- {
- if (obj == null || obj is SemanticsInformation)
- {
- return (SemanticsInformation) obj;
- }
- if (obj is Asn1Sequence)
- {
- return new SemanticsInformation(Asn1Sequence.GetInstance(obj));
- }
- throw new ArgumentException("unknown object in GetInstance: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj");
- }
- public SemanticsInformation(
- Asn1Sequence seq)
- {
- if (seq.Count < 1)
- {
- throw new ArgumentException("no objects in SemanticsInformation");
- }
- IEnumerator e = seq.GetEnumerator();
- e.MoveNext();
- object obj = e.Current;
- if (obj is DerObjectIdentifier)
- {
- semanticsIdentifier = DerObjectIdentifier.GetInstance(obj);
- if (e.MoveNext())
- {
- obj = e.Current;
- }
- else
- {
- obj = null;
- }
- }
- if (obj != null)
- {
- Asn1Sequence generalNameSeq = Asn1Sequence.GetInstance(obj );
- nameRegistrationAuthorities = new GeneralName[generalNameSeq.Count];
- for (int i= 0; i < generalNameSeq.Count; i++)
- {
- nameRegistrationAuthorities[i] = GeneralName.GetInstance(generalNameSeq[i]);
- }
- }
- }
- public SemanticsInformation(
- DerObjectIdentifier semanticsIdentifier,
- GeneralName[] generalNames)
- {
- this.semanticsIdentifier = semanticsIdentifier;
- this.nameRegistrationAuthorities = generalNames;
- }
- public SemanticsInformation(
- DerObjectIdentifier semanticsIdentifier)
- {
- this.semanticsIdentifier = semanticsIdentifier;
- }
- public SemanticsInformation(
- GeneralName[] generalNames)
- {
- this.nameRegistrationAuthorities = generalNames;
- }
- public DerObjectIdentifier SemanticsIdentifier { get { return semanticsIdentifier; } }
- public GeneralName[] GetNameRegistrationAuthorities()
- {
- return nameRegistrationAuthorities;
- }
- public override Asn1Object ToAsn1Object()
- {
- Asn1EncodableVector v = new Asn1EncodableVector();
- v.AddOptional(semanticsIdentifier);
- if (null != nameRegistrationAuthorities)
- {
- v.Add(new DerSequence(nameRegistrationAuthorities));
- }
- return new DerSequence(v);
- }
- }
- }
- #pragma warning restore
- #endif
|