diff options
author | David Hook <dgh@bouncycastle.org> | 2017-07-11 10:50:43 +1000 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2017-07-11 10:50:43 +1000 |
commit | 7e55ab06a7857d6ac8d11cf842fbefbd7b8d67e2 (patch) | |
tree | ece7231eb49a0355ea0446ad3b681c011b3ff240 /crypto/test | |
parent | fixed reset issue (diff) | |
download | BouncyCastle.NET-ed25519-7e55ab06a7857d6ac8d11cf842fbefbd7b8d67e2.tar.xz |
CCM update
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/crypto/test/DSTU7624Test.cs | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/crypto/test/src/crypto/test/DSTU7624Test.cs b/crypto/test/src/crypto/test/DSTU7624Test.cs index 599a3d61f..12ee46e5d 100644 --- a/crypto/test/src/crypto/test/DSTU7624Test.cs +++ b/crypto/test/src/crypto/test/DSTU7624Test.cs @@ -482,7 +482,6 @@ namespace Org.BouncyCastle.Crypto.Tests KCcmBlockCipher dstu7624ccm = new KCcmBlockCipher(new Dstu7624Engine(128)); - dstu7624ccm.setNb(4); dstu7624ccm.Init(true, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -508,7 +507,6 @@ namespace Org.BouncyCastle.Crypto.Tests + " got " + Hex.ToHexString(encrypted)); } - dstu7624ccm.setNb(4); dstu7624ccm.Init(false, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -546,7 +544,6 @@ namespace Org.BouncyCastle.Crypto.Tests dstu7624ccm = new KCcmBlockCipher(new Dstu7624Engine(256)); - dstu7624ccm.setNb(4); dstu7624ccm.Init(true, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -570,8 +567,7 @@ namespace Org.BouncyCastle.Crypto.Tests + Hex.ToHexString(expectedEncrypted) + " got " + Hex.ToHexString(encrypted)); } - - dstu7624ccm.setNb(4); + dstu7624ccm.Init(false, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -607,9 +603,8 @@ namespace Org.BouncyCastle.Crypto.Tests param = new AeadParameters(new KeyParameter(key), 256, iv); - dstu7624ccm = new KCcmBlockCipher(new Dstu7624Engine(256)); + dstu7624ccm = new KCcmBlockCipher(new Dstu7624Engine(256), 6); - dstu7624ccm.setNb(6); dstu7624ccm.Init(true, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -634,7 +629,6 @@ namespace Org.BouncyCastle.Crypto.Tests + " got " + Hex.ToHexString(encrypted)); } - dstu7624ccm.setNb(6); dstu7624ccm.Init(false, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -670,9 +664,8 @@ namespace Org.BouncyCastle.Crypto.Tests param = new AeadParameters(new KeyParameter(key), 512, iv); - dstu7624ccm = new KCcmBlockCipher(new Dstu7624Engine(512)); + dstu7624ccm = new KCcmBlockCipher(new Dstu7624Engine(512), 8); - dstu7624ccm.setNb(8); dstu7624ccm.Init(true, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); @@ -697,7 +690,6 @@ namespace Org.BouncyCastle.Crypto.Tests + " got " + Hex.ToHexString(encrypted)); } - dstu7624ccm.setNb(8); dstu7624ccm.Init(false, param); dstu7624ccm.ProcessAadBytes(authText, 0, authText.Length); |