summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-02-13 16:00:19 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-02-13 16:00:19 +0700
commitc091f2d5eba02afa4dd5bedc30c8003a4631b970 (patch)
treeea2225ad4f8322ef1586995cafb9fd434dcfe01c /crypto/test
parentFix/refactor LWC algorithms (diff)
downloadBouncyCastle.NET-ed25519-c091f2d5eba02afa4dd5bedc30c8003a4631b970.tar.xz
Refactor LWC algorithms
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/crypto/test/ElephantTest.cs2
-rw-r--r--crypto/test/src/crypto/test/ISAPTest.cs2
-rw-r--r--crypto/test/src/crypto/test/PhotonBeetleTest.cs2
-rw-r--r--crypto/test/src/crypto/test/SparkleTest.cs2
-rw-r--r--crypto/test/src/crypto/test/XoodyakTest.cs2
5 files changed, 5 insertions, 5 deletions
diff --git a/crypto/test/src/crypto/test/ElephantTest.cs b/crypto/test/src/crypto/test/ElephantTest.cs
index 406be7c6f..7e7e131ab 100644
--- a/crypto/test/src/crypto/test/ElephantTest.cs
+++ b/crypto/test/src/crypto/test/ElephantTest.cs
@@ -270,7 +270,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             elephantEngine.DoFinal(mac2, 0);
             if (!Arrays.AreEqual(mac1, mac2))
             {
-                Assert.Fail("mac should match for the same AAD with different ways of inputing");
+                Assert.Fail("mac should match for the same AAD with different ways of inputting");
             }
 
             byte[] c2 = new byte[elephantEngine.GetOutputSize(10)];
diff --git a/crypto/test/src/crypto/test/ISAPTest.cs b/crypto/test/src/crypto/test/ISAPTest.cs
index e7b0bd25c..500026bf9 100644
--- a/crypto/test/src/crypto/test/ISAPTest.cs
+++ b/crypto/test/src/crypto/test/ISAPTest.cs
@@ -330,7 +330,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             isapEngine.DoFinal(mac2, 0);
             if (!Arrays.AreEqual(mac1, mac2))
             {
-                Assert.Fail("mac should match for the same AAD with different ways of inputing");
+                Assert.Fail("mac should match for the same AAD with different ways of inputting");
             }
 
             byte[] c2 = new byte[isapEngine.GetOutputSize(10)];
diff --git a/crypto/test/src/crypto/test/PhotonBeetleTest.cs b/crypto/test/src/crypto/test/PhotonBeetleTest.cs
index 80e34ad4b..cd551432c 100644
--- a/crypto/test/src/crypto/test/PhotonBeetleTest.cs
+++ b/crypto/test/src/crypto/test/PhotonBeetleTest.cs
@@ -310,7 +310,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             aeadBlockCipher.DoFinal(mac2, 0);
             if (!Arrays.AreEqual(mac1, mac2))
             {
-                Assert.Fail("mac should match for the same AAD with different ways of inputing");
+                Assert.Fail("mac should match for the same AAD with different ways of inputting");
             }
 
             byte[] c2 = new byte[aeadBlockCipher.GetOutputSize(10)];
diff --git a/crypto/test/src/crypto/test/SparkleTest.cs b/crypto/test/src/crypto/test/SparkleTest.cs
index 245a1831c..ea4520226 100644
--- a/crypto/test/src/crypto/test/SparkleTest.cs
+++ b/crypto/test/src/crypto/test/SparkleTest.cs
@@ -324,7 +324,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             sparkleEngine.DoFinal(mac2, 0);
             if (!Arrays.AreEqual(mac1, mac2))
             {
-                Assert.Fail("mac should match for the same AAD with different ways of inputing");
+                Assert.Fail("mac should match for the same AAD with different ways of inputting");
             }
 
             byte[] c2 = new byte[sparkleEngine.GetOutputSize(10)];
diff --git a/crypto/test/src/crypto/test/XoodyakTest.cs b/crypto/test/src/crypto/test/XoodyakTest.cs
index d8664e82f..b73d998f4 100644
--- a/crypto/test/src/crypto/test/XoodyakTest.cs
+++ b/crypto/test/src/crypto/test/XoodyakTest.cs
@@ -300,7 +300,7 @@ namespace Org.BouncyCastle.Crypto.Tests
             xoodyakEngine.DoFinal(mac2, 0);
             if (!Arrays.AreEqual(mac1, mac2))
             {
-                Assert.Fail("mac should match for the same AAD with different ways of inputing");
+                Assert.Fail("mac should match for the same AAD with different ways of inputting");
             }
 
             byte[] c2 = new byte[xoodyakEngine.GetOutputSize(10)];