summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/crypto/macs/GMac.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/macs/GMac.cs b/crypto/src/crypto/macs/GMac.cs

index 12ca68f90..eb340ddbc 100644 --- a/crypto/src/crypto/macs/GMac.cs +++ b/crypto/src/crypto/macs/GMac.cs
@@ -41,7 +41,7 @@ namespace Org.BouncyCastle.Crypto.Macs /// This will produce an authentication code the length of the block size of the cipher. /// </remarks> /// <param name="cipher">the cipher to be used in GCM mode to generate the MAC.</param> - /// <param name="macSizeBits">the mac size to generate, in bits. Must be a multiple of 8 and >= 96 and <= 128.</param> + /// <param name="macSizeBits">the mac size to generate, in bits. Must be a multiple of 8, between 96 and 128 (inclusive).</param> public GMac(GcmBlockCipher cipher, int macSizeBits) { this.cipher = cipher;