diff options
Diffstat (limited to 'crypto/src/asn1/cmp/PKIConfirmContent.cs')
-rw-r--r-- | crypto/src/asn1/cmp/PKIConfirmContent.cs | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/crypto/src/asn1/cmp/PKIConfirmContent.cs b/crypto/src/asn1/cmp/PKIConfirmContent.cs index d154427a4..ecebb22a8 100644 --- a/crypto/src/asn1/cmp/PKIConfirmContent.cs +++ b/crypto/src/asn1/cmp/PKIConfirmContent.cs @@ -4,24 +4,38 @@ using Org.BouncyCastle.Utilities; namespace Org.BouncyCastle.Asn1.Cmp { - public class PkiConfirmContent + /** + * PKIConfirmContent ::= NULL + */ + public class PkiConfirmContent : Asn1Encodable { public static PkiConfirmContent GetInstance(object obj) { - if (obj is PkiConfirmContent) - return (PkiConfirmContent)obj; + if (obj == null) + return null; - if (obj is Asn1Null) - return new PkiConfirmContent(); + if (obj is PkiConfirmContent pkiConfirmContent) + return pkiConfirmContent; - throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj"); - } + if (obj is Asn1Null asn1Null) + return new PkiConfirmContent(asn1Null); - public PkiConfirmContent() - { + throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), nameof(obj)); } + private readonly Asn1Null m_val; + + public PkiConfirmContent() + : this(DerNull.Instance) + { + } + + private PkiConfirmContent(Asn1Null val) + { + m_val = val; + } + /** * <pre> * PkiConfirmContent ::= NULL @@ -30,7 +44,7 @@ namespace Org.BouncyCastle.Asn1.Cmp */ public override Asn1Object ToAsn1Object() { - return DerNull.Instance; + return m_val; } } } |