summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorDavid Hook <dgh@bouncycastle.org>2017-07-11 10:50:43 +1000
committerDavid Hook <dgh@bouncycastle.org>2017-07-11 10:50:43 +1000
commit7e55ab06a7857d6ac8d11cf842fbefbd7b8d67e2 (patch)
treeece7231eb49a0355ea0446ad3b681c011b3ff240 /crypto/test
parentfixed reset issue (diff)
downloadBouncyCastle.NET-ed25519-7e55ab06a7857d6ac8d11cf842fbefbd7b8d67e2.tar.xz
CCM update
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/crypto/test/DSTU7624Test.cs14
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);