diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-29 17:27:21 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-29 17:27:21 +0700 |
commit | b320ab656d57f9cd0fdb363075317a2cbf470e55 (patch) | |
tree | 8681245fc0ba4441d33ee89b117ce71a00da7cca /crypto/src/security/CipherUtilities.cs | |
parent | Remove obsolete code (diff) | |
download | BouncyCastle.NET-ed25519-b320ab656d57f9cd0fdb363075317a2cbf470e55.tar.xz |
Use correct OID
Diffstat (limited to 'crypto/src/security/CipherUtilities.cs')
-rw-r--r-- | crypto/src/security/CipherUtilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/security/CipherUtilities.cs b/crypto/src/security/CipherUtilities.cs index 8fbf19218..11bf45680 100644 --- a/crypto/src/security/CipherUtilities.cs +++ b/crypto/src/security/CipherUtilities.cs @@ -246,7 +246,7 @@ namespace Org.BouncyCastle.Security Algorithms["GOST"] = "GOST28147"; Algorithms["GOST-28147"] = "GOST28147"; - Algorithms[CryptoProObjectIdentifiers.GostR28147Cbc.Id] = "GOST28147/CBC/PKCS7PADDING"; + Algorithms[CryptoProObjectIdentifiers.GostR28147Gcfb.Id] = "GOST28147/CBC/PKCS7PADDING"; Algorithms["RC5-32"] = "RC5"; |