summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2013-11-01 19:59:16 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-11-01 19:59:16 +0700
commit120464b1046388f3622b0edbf7ec1c1e749f32fa (patch)
tree04ed84c17a34e122c042a2a0a3e2ce74f13c02f8 /crypto/src
parentAdd GMac classes to project file (diff)
downloadBouncyCastle.NET-ed25519-120464b1046388f3622b0edbf7ec1c1e749f32fa.tar.xz
Minor edit to comment
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;