diff options
Diffstat (limited to 'crypto/src/cms/PasswordRecipientInformation.cs')
-rw-r--r-- | crypto/src/cms/PasswordRecipientInformation.cs | 2 |
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]); |