From 0d4ba4fb825b73ecaf2da49b3c49e7597222583d Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 14 Feb 2023 21:30:29 +0700 Subject: Fix error message --- crypto/src/crypto/modes/GCMBlockCipher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- cgit 1.4.1