summary refs log tree commit diff
path: root/crypto/src/cms/PasswordRecipientInformation.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-07-26 13:47:16 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-07-26 13:47:16 +0700
commit8ce8a4d09d8e6cfb29e8ecbb96a354a3eed9c321 (patch)
treec367281f28b5a082f32f1e0d77d6a22d6b7cd779 /crypto/src/cms/PasswordRecipientInformation.cs
parentCreate new API for algorithm finders (diff)
downloadBouncyCastle.NET-ed25519-8ce8a4d09d8e6cfb29e8ecbb96a354a3eed9c321.tar.xz
Refactor CMS helpers
Diffstat (limited to 'crypto/src/cms/PasswordRecipientInformation.cs')
-rw-r--r--crypto/src/cms/PasswordRecipientInformation.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/cms/PasswordRecipientInformation.cs b/crypto/src/cms/PasswordRecipientInformation.cs
index ff4a20d68..23447a25e 100644
--- a/crypto/src/cms/PasswordRecipientInformation.cs
+++ b/crypto/src/cms/PasswordRecipientInformation.cs
@@ -51,7 +51,7 @@ namespace Org.BouncyCastle.Cms
 				Asn1Sequence        kekAlgParams = (Asn1Sequence)kekAlg.Parameters;
 				byte[]              encryptedKey = info.EncryptedKey.GetOctets();
 				string              kekAlgName = DerObjectIdentifier.GetInstance(kekAlgParams[0]).Id;
-				string				cName = CmsEnvelopedHelper.Instance.GetRfc3211WrapperName(kekAlgName);
+				string				cName = CmsEnvelopedHelper.GetRfc3211WrapperName(kekAlgName);
 				IWrapper			keyWrapper = WrapperUtilities.GetWrapper(cName);
 
                 var iv = Asn1OctetString.GetInstance(kekAlgParams[1]);