123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- #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.IsisMtt.X509
- {
- /**
- * An Admissions structure.
- * <p/>
- * <pre>
- * Admissions ::= SEQUENCE
- * {
- * admissionAuthority [0] EXPLICIT GeneralName OPTIONAL
- * namingAuthority [1] EXPLICIT NamingAuthority OPTIONAL
- * professionInfos SEQUENCE OF ProfessionInfo
- * }
- * <p/>
- * </pre>
- *
- * @see BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax
- * @see BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo
- * @see BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority
- */
- public class Admissions
- : Asn1Encodable
- {
- private readonly GeneralName admissionAuthority;
- private readonly NamingAuthority namingAuthority;
- private readonly Asn1Sequence professionInfos;
- public static Admissions GetInstance(
- object obj)
- {
- if (obj == null || obj is Admissions)
- {
- return (Admissions) obj;
- }
- if (obj is Asn1Sequence)
- {
- return new Admissions((Asn1Sequence) obj);
- }
- throw new ArgumentException("unknown object in factory: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj");
- }
- /**
- * Constructor from Asn1Sequence.
- * <p/>
- * The sequence is of type ProcurationSyntax:
- * <p/>
- * <pre>
- * Admissions ::= SEQUENCE
- * {
- * admissionAuthority [0] EXPLICIT GeneralName OPTIONAL
- * namingAuthority [1] EXPLICIT NamingAuthority OPTIONAL
- * professionInfos SEQUENCE OF ProfessionInfo
- * }
- * </pre>
- *
- * @param seq The ASN.1 sequence.
- */
- private Admissions(
- Asn1Sequence seq)
- {
- if (seq.Count > 3)
- throw new ArgumentException("Bad sequence size: " + seq.Count);
- IEnumerator e = seq.GetEnumerator();
- e.MoveNext();
- Asn1Encodable o = (Asn1Encodable) e.Current;
- if (o is Asn1TaggedObject)
- {
- switch (((Asn1TaggedObject)o).TagNo)
- {
- case 0:
- admissionAuthority = GeneralName.GetInstance((Asn1TaggedObject)o, true);
- break;
- case 1:
- namingAuthority = NamingAuthority.GetInstance((Asn1TaggedObject)o, true);
- break;
- default:
- throw new ArgumentException("Bad tag number: " + ((Asn1TaggedObject)o).TagNo);
- }
- e.MoveNext();
- o = (Asn1Encodable) e.Current;
- }
- if (o is Asn1TaggedObject)
- {
- switch (((Asn1TaggedObject)o).TagNo)
- {
- case 1:
- namingAuthority = NamingAuthority.GetInstance((Asn1TaggedObject)o, true);
- break;
- default:
- throw new ArgumentException("Bad tag number: " + ((Asn1TaggedObject)o).TagNo);
- }
- e.MoveNext();
- o = (Asn1Encodable) e.Current;
- }
- professionInfos = Asn1Sequence.GetInstance(o);
- if (e.MoveNext())
- {
- throw new ArgumentException("Bad object encountered: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(e.Current));
- }
- }
- /**
- * Constructor from a given details.
- * <p/>
- * Parameter <code>professionInfos</code> is mandatory.
- *
- * @param admissionAuthority The admission authority.
- * @param namingAuthority The naming authority.
- * @param professionInfos The profession infos.
- */
- public Admissions(
- GeneralName admissionAuthority,
- NamingAuthority namingAuthority,
- ProfessionInfo[] professionInfos)
- {
- this.admissionAuthority = admissionAuthority;
- this.namingAuthority = namingAuthority;
- this.professionInfos = new DerSequence(professionInfos);
- }
- public virtual GeneralName AdmissionAuthority
- {
- get { return admissionAuthority; }
- }
- public virtual NamingAuthority NamingAuthority
- {
- get { return namingAuthority; }
- }
- public ProfessionInfo[] GetProfessionInfos()
- {
- ProfessionInfo[] infos = new ProfessionInfo[professionInfos.Count];
- int count = 0;
- foreach (Asn1Encodable ae in professionInfos)
- {
- infos[count++] = ProfessionInfo.GetInstance(ae);
- }
- return infos;
- }
- /**
- * Produce an object suitable for an Asn1OutputStream.
- * <p/>
- * Returns:
- * <p/>
- * <pre>
- * Admissions ::= SEQUENCE
- * {
- * admissionAuthority [0] EXPLICIT GeneralName OPTIONAL
- * namingAuthority [1] EXPLICIT NamingAuthority OPTIONAL
- * professionInfos SEQUENCE OF ProfessionInfo
- * }
- * <p/>
- * </pre>
- *
- * @return an Asn1Object
- */
- public override Asn1Object ToAsn1Object()
- {
- Asn1EncodableVector v = new Asn1EncodableVector();
- v.AddOptionalTagged(true, 0, admissionAuthority);
- v.AddOptionalTagged(true, 1, namingAuthority);
- v.Add(professionInfos);
- return new DerSequence(v);
- }
- }
- }
- #pragma warning restore
- #endif
|