summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-02-14 21:30:29 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-02-14 21:30:29 +0700
commit0d4ba4fb825b73ecaf2da49b3c49e7597222583d (patch)
treeb869291c1375c056013533fc21a9b24095eb1870 /crypto
parentRefactoring in Cms (diff)
downloadBouncyCastle.NET-ed25519-0d4ba4fb825b73ecaf2da49b3c49e7597222583d.tar.xz
Fix error message
Diffstat (limited to 'crypto')
-rw-r--r--crypto/src/crypto/modes/GCMBlockCipher.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/modes/GCMBlockCipher.cs b/crypto/src/crypto/modes/GCMBlockCipher.cs
index aed9ef311..9ab3a8e8c 100644
--- a/crypto/src/crypto/modes/GCMBlockCipher.cs
+++ b/crypto/src/crypto/modes/GCMBlockCipher.cs
@@ -173,7 +173,7 @@ namespace Org.BouncyCastle.Crypto.Modes
             }
             else if (this.H == null)
             {
-                throw new ArgumentException("Key must be specified in initial init");
+                throw new ArgumentException("Key must be specified in initial Init");
             }
 
             this.J0 = new byte[BlockSize];