tls: typo fix in comment
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 23 Nov 2018 18:00:12 +0000 (19:00 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 23 Nov 2018 18:00:12 +0000 (19:00 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/tls_aesgcm.c

index 360e6f4ff905d6a4a988e2d8fd4d922fbf17ff7f..a06f8c8c5f84e3d51ef2025fdce5b18960230e69 100644 (file)
@@ -82,9 +82,9 @@ static void GMULT(byte* X, byte* Y)
 }
 
 //bbox:
-// for TLS AES-GCM, a (which as AAD) is always 13 bytes long, and bbox code provides
+// for TLS AES-GCM, a (which is AAD) is always 13 bytes long, and bbox code provides
 // extra 3 zeroed bytes, making it a[16], or a[AES_BLOCK_SIZE].
-// Resulting auth tag in s is also always AES_BLOCK_SIZE bytes.
+// Resulting auth tag in s[] is also always AES_BLOCK_SIZE bytes.
 //
 // This allows some simplifications.
 #define aSz AES_BLOCK_SIZE