diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 01:40:55 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 01:40:55 +0700 |
commit | 892dbe845c98ff3fad3d682aaed3cd40b3161d4f (patch) | |
tree | 785ea8dc92cde60b6c06d5f56f6c3f0cda69bb2c /crypto/src/asn1/cms/EncryptedContentInfoParser.cs | |
parent | Cleanup old build systems (diff) | |
download | BouncyCastle.NET-ed25519-892dbe845c98ff3fad3d682aaed3cd40b3161d4f.tar.xz |
ObsoleteAttribute cleanup
Diffstat (limited to 'crypto/src/asn1/cms/EncryptedContentInfoParser.cs')
-rw-r--r-- | crypto/src/asn1/cms/EncryptedContentInfoParser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/cms/EncryptedContentInfoParser.cs b/crypto/src/asn1/cms/EncryptedContentInfoParser.cs index af748b1b3..09434d7ef 100644 --- a/crypto/src/asn1/cms/EncryptedContentInfoParser.cs +++ b/crypto/src/asn1/cms/EncryptedContentInfoParser.cs @@ -40,7 +40,7 @@ namespace Org.BouncyCastle.Asn1.Cms public IAsn1Convertible GetEncryptedContent( int tag) { - return _encryptedContent.GetObjectParser(tag, false); + return Asn1Utilities.ParseContextBaseUniversal(_encryptedContent, 0, false, tag); } } } |