From 4fccb8f490eefe7181558b2c3376ab23c33632ee Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Thu, 18 Nov 2021 13:46:18 +0700 Subject: ASN.1: Port of bc-java TYPE instances - we use Meta.Instance here due to syntax restrictions - also reworked some ASN.1 string types --- crypto/src/asn1/DerGeneralizedTime.cs | 75 ++++++++++++++++++++++------------- 1 file changed, 47 insertions(+), 28 deletions(-) (limited to 'crypto/src/asn1/DerGeneralizedTime.cs') diff --git a/crypto/src/asn1/DerGeneralizedTime.cs b/crypto/src/asn1/DerGeneralizedTime.cs index 41c897751..ed2cb5e62 100644 --- a/crypto/src/asn1/DerGeneralizedTime.cs +++ b/crypto/src/asn1/DerGeneralizedTime.cs @@ -1,5 +1,6 @@ using System; using System.Globalization; +using System.IO; using System.Text; using Org.BouncyCastle.Utilities; @@ -12,47 +13,64 @@ namespace Org.BouncyCastle.Asn1 public class DerGeneralizedTime : Asn1Object { - private readonly string time; + internal class Meta : Asn1UniversalType + { + internal static readonly Asn1UniversalType Instance = new Meta(); + + private Meta() : base(typeof(DerGeneralizedTime), Asn1Tags.GeneralizedTime) {} + + internal override Asn1Object FromImplicitPrimitive(DerOctetString octetString) + { + return CreatePrimitive(octetString.GetOctets()); + } + } /** * return a generalized time from the passed in object * * @exception ArgumentException if the object cannot be converted. */ - public static DerGeneralizedTime GetInstance( - object obj) + public static DerGeneralizedTime GetInstance(object obj) { if (obj == null || obj is DerGeneralizedTime) { return (DerGeneralizedTime)obj; } + else if (obj is IAsn1Convertible) + { + Asn1Object asn1Object = ((IAsn1Convertible)obj).ToAsn1Object(); + if (asn1Object is DerGeneralizedTime) + return (DerGeneralizedTime)asn1Object; + } + else if (obj is byte[]) + { + try + { + return (DerGeneralizedTime)Meta.Instance.FromByteArray((byte[])obj); + } + catch (IOException e) + { + throw new ArgumentException("failed to construct generalized time from byte[]: " + e.Message); + } + } throw new ArgumentException("illegal object in GetInstance: " + Platform.GetTypeName(obj), "obj"); } /** - * return a Generalized Time object from a tagged object. + * return a generalized Time object from a tagged object. * - * @param obj the tagged object holding the object we want - * @param explicitly true if the object is meant to be explicitly - * tagged false otherwise. - * @exception ArgumentException if the tagged object cannot - * be converted. + * @param taggedObject the tagged object holding the object we want + * @param declaredExplicit true if the object is meant to be explicitly tagged false otherwise. + * @exception ArgumentException if the tagged object cannot be converted. */ - public static DerGeneralizedTime GetInstance( - Asn1TaggedObject obj, - bool isExplicit) + public static DerGeneralizedTime GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit) { - Asn1Object o = obj.GetObject(); - - if (isExplicit || o is DerGeneralizedTime) - { - return GetInstance(o); - } - - return new DerGeneralizedTime(((Asn1OctetString)o).GetOctets()); + return (DerGeneralizedTime)Meta.Instance.GetContextInstance(taggedObject, declaredExplicit); } + private readonly string time; + /** * The correct format for this is YYYYMMDDHHMMSS[.f]Z, or without the Z * for local time, or Z+-HHMM on the end, for difference between local @@ -305,20 +323,21 @@ namespace Org.BouncyCastle.Asn1 return new PrimitiveEncoding(tagClass, tagNo, GetOctets()); } - protected override bool Asn1Equals( - Asn1Object asn1Object) + protected override bool Asn1Equals(Asn1Object asn1Object) { - DerGeneralizedTime other = asn1Object as DerGeneralizedTime; - - if (other == null) - return false; - - return this.time.Equals(other.time); + DerGeneralizedTime that = asn1Object as DerGeneralizedTime; + return null != that + && this.time.Equals(that.time); } protected override int Asn1GetHashCode() { return time.GetHashCode(); } + + internal static DerGeneralizedTime CreatePrimitive(byte[] contents) + { + return new DerGeneralizedTime(contents); + } } } -- cgit 1.4.1