diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-02-01 21:07:46 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-02-01 21:07:46 +0700 |
commit | db9b19e3f17a2aee8afcd673ef9327bb8646b87a (patch) | |
tree | a16cf94d902be26f7f00a5218cafa15fe28cf233 /crypto/src/asn1/cmp/ProtectedPart.cs | |
parent | Add GetInstanceFromChoice helper (diff) | |
download | BouncyCastle.NET-ed25519-db9b19e3f17a2aee8afcd673ef9327bb8646b87a.tar.xz |
Overhaul Asn1.Cmp
Diffstat (limited to 'crypto/src/asn1/cmp/ProtectedPart.cs')
-rw-r--r-- | crypto/src/asn1/cmp/ProtectedPart.cs | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/crypto/src/asn1/cmp/ProtectedPart.cs b/crypto/src/asn1/cmp/ProtectedPart.cs index fc83ac6c6..863a85e17 100644 --- a/crypto/src/asn1/cmp/ProtectedPart.cs +++ b/crypto/src/asn1/cmp/ProtectedPart.cs @@ -5,13 +5,16 @@ namespace Org.BouncyCastle.Asn1.Cmp { public static ProtectedPart GetInstance(object obj) { - if (obj is ProtectedPart protectedPart) - return protectedPart; - - if (obj != null) - return new ProtectedPart(Asn1Sequence.GetInstance(obj)); + if (obj == null) + return null; + if (obj is ProtectedPart popoDecKeyRespContent) + return popoDecKeyRespContent; + return new ProtectedPart(Asn1Sequence.GetInstance(obj)); + } - return null; + public static ProtectedPart GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit) + { + return GetInstance(Asn1Sequence.GetInstance(taggedObject, declaredExplicit)); } private readonly PkiHeader m_header; |