summary refs log tree commit diff
path: root/crypto/src/asn1/pkcs/ContentInfo.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-07-18 12:06:03 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-07-18 12:06:03 +0700
commit913eada3ad9394f1327a1feb80a3261f7c6e55bb (patch)
tree6366c1e196ad2ac249edf12a4d41d52ee2d28629 /crypto/src/asn1/pkcs/ContentInfo.cs
parentRefactoring around PrivateKeyInfo (diff)
downloadBouncyCastle.NET-ed25519-913eada3ad9394f1327a1feb80a3261f7c6e55bb.tar.xz
Deprecated Asn1TaggedObject.GetObject and refactor
Diffstat (limited to 'crypto/src/asn1/pkcs/ContentInfo.cs')
-rw-r--r--crypto/src/asn1/pkcs/ContentInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/pkcs/ContentInfo.cs b/crypto/src/asn1/pkcs/ContentInfo.cs
index 05d9a2033..0a19306f2 100644
--- a/crypto/src/asn1/pkcs/ContentInfo.cs
+++ b/crypto/src/asn1/pkcs/ContentInfo.cs
@@ -22,7 +22,7 @@ namespace Org.BouncyCastle.Asn1.Pkcs
 
             if (seq.Count > 1)
             {
-                content = ((Asn1TaggedObject) seq[1]).GetObject();
+                content = ((Asn1TaggedObject) seq[1]).GetExplicitBaseObject();
             }
         }