using System; using Org.BouncyCastle.Utilities; namespace Org.BouncyCastle.Asn1.IsisMtt.X509 { /** * A declaration of majority. *

*

	*           DeclarationOfMajoritySyntax ::= CHOICE
	*           {
	*             notYoungerThan [0] IMPLICIT INTEGER,
	*             fullAgeAtCountry [1] IMPLICIT SEQUENCE
	*             {
	*               fullAge BOOLEAN DEFAULT TRUE,
	*               country PrintableString (SIZE(2))
	*             }
	*             dateOfBirth [2] IMPLICIT GeneralizedTime
	*           }
	* 
*

* fullAgeAtCountry indicates the majority of the owner with respect to the laws * of a specific country. */ public class DeclarationOfMajority : Asn1Encodable, IAsn1Choice { public enum Choice { NotYoungerThan = 0, FullAgeAtCountry = 1, DateOfBirth = 2 }; public static DeclarationOfMajority GetInstance(object obj) { if (obj == null) return null; if (obj is Asn1Encodable element) { var result = GetOptional(element); if (result != null) return result; } throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), nameof(obj)); } public static DeclarationOfMajority GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit) => Asn1Utilities.GetInstanceChoice(taggedObject, declaredExplicit, GetInstance); public static DeclarationOfMajority GetOptional(Asn1Encodable element) { if (element == null) throw new ArgumentNullException(nameof(element)); if (element is DeclarationOfMajority declarationOfMajority) return declarationOfMajority; if (element is Asn1TaggedObject taggedObject) { Asn1Encodable baseObject = GetOptionalBaseObject(taggedObject); if (baseObject != null) return new DeclarationOfMajority(taggedObject.TagNo, baseObject); } return null; } public static DeclarationOfMajority GetTagged(Asn1TaggedObject taggedObject, bool declaredExplicit) => Asn1Utilities.GetTaggedChoice(taggedObject, declaredExplicit, GetInstance); private static Asn1Encodable GetOptionalBaseObject(Asn1TaggedObject taggedObject) { if (taggedObject.HasContextTag()) { switch (taggedObject.TagNo) { case (int)Choice.NotYoungerThan: return DerInteger.GetInstance(taggedObject, false); case (int)Choice.FullAgeAtCountry: return Asn1Sequence.GetInstance(taggedObject, false); case (int)Choice.DateOfBirth: return Asn1GeneralizedTime.GetInstance(taggedObject, false); } } return null; } private readonly int m_tag; private readonly Asn1Encodable m_baseObject; private DeclarationOfMajority(int tag, Asn1Encodable baseObject) { m_tag = tag; m_baseObject = baseObject; } public DeclarationOfMajority(int notYoungerThan) { m_tag = (int)Choice.NotYoungerThan; m_baseObject = new DerInteger(notYoungerThan); } public DeclarationOfMajority(bool fullAge, string country) { if (country.Length != 2) throw new ArgumentException("country can only be 2 characters", nameof(country)); DerPrintableString countryString = new DerPrintableString(country, true); DerSequence seq; if (fullAge) { seq = new DerSequence(countryString); } else { seq = new DerSequence(DerBoolean.False, countryString); } m_tag = (int)Choice.FullAgeAtCountry; m_baseObject = seq; } public DeclarationOfMajority(Asn1GeneralizedTime dateOfBirth) { m_tag = (int)Choice.DateOfBirth; m_baseObject = dateOfBirth ?? throw new ArgumentNullException(nameof(dateOfBirth)); } public Choice Type => (Choice)m_tag; /** * @return notYoungerThan if that's what we are, -1 otherwise */ public virtual int NotYoungerThan { get { switch (Type) { case Choice.NotYoungerThan: return DerInteger.GetInstance(m_baseObject).IntValueExact; default: return -1; } } } public virtual Asn1Sequence FullAgeAtCountry { get { switch (Type) { case Choice.FullAgeAtCountry: return Asn1Sequence.GetInstance(m_baseObject); default: return null; } } } public virtual Asn1GeneralizedTime DateOfBirth { get { switch (Type) { case Choice.DateOfBirth: return Asn1GeneralizedTime.GetInstance(m_baseObject); default: return null; } } } /** * Produce an object suitable for an Asn1OutputStream. *

* Returns: *

*

		*           DeclarationOfMajoritySyntax ::= CHOICE
		*           {
		*             notYoungerThan [0] IMPLICIT INTEGER,
		*             fullAgeAtCountry [1] IMPLICIT SEQUENCE
		*             {
		*               fullAge BOOLEAN DEFAULT TRUE,
		*               country PrintableString (SIZE(2))
		*             }
		*             dateOfBirth [2] IMPLICIT GeneralizedTime
		*           }
		* 
* * @return an Asn1Object */ public override Asn1Object ToAsn1Object() => new DerTaggedObject(false, m_tag, m_baseObject); } }