diff options
author | David Hook <dgh@bouncycastle.org> | 2019-01-18 12:37:12 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2019-01-18 12:37:12 +1100 |
commit | 714e5ef11e2ea6f0aa6cdd0dcb9987d8a7faea54 (patch) | |
tree | 097500cf6c166f4c3abda5fa0b4eeaed228128f3 /crypto/src/asn1 | |
parent | Missing file from last commit. (diff) | |
download | BouncyCastle.NET-ed25519-714e5ef11e2ea6f0aa6cdd0dcb9987d8a7faea54.tar.xz |
added use of IKeyWrapper for managing CMS KeyTransRecipient
Diffstat (limited to 'crypto/src/asn1')
-rw-r--r-- | crypto/src/asn1/pkcs/PKCSObjectIdentifiers.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/pkcs/PKCSObjectIdentifiers.cs b/crypto/src/asn1/pkcs/PKCSObjectIdentifiers.cs index 615091f7c..a991585f6 100644 --- a/crypto/src/asn1/pkcs/PKCSObjectIdentifiers.cs +++ b/crypto/src/asn1/pkcs/PKCSObjectIdentifiers.cs @@ -62,7 +62,7 @@ namespace Org.BouncyCastle.Asn1.Pkcs public static readonly DerObjectIdentifier DesEde3Cbc = new DerObjectIdentifier(EncryptionAlgorithm + ".7"); public static readonly DerObjectIdentifier RC2Cbc = new DerObjectIdentifier(EncryptionAlgorithm + ".2"); - public static readonly DerObjectIdentifier Rc4 = new DerObjectIdentifier(EncryptionAlgorithm + ".4"); + public static readonly DerObjectIdentifier rc4 = new DerObjectIdentifier(EncryptionAlgorithm + ".4"); // // object identifiers for digests |