tls: typo fix in comment

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-11-23 19:00:12 +01:00
parent 25569c3ca9
commit d496b4002a

View File

@ -82,9 +82,9 @@ static void GMULT(byte* X, byte* Y)
} }
//bbox: //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]. // 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. // This allows some simplifications.
#define aSz AES_BLOCK_SIZE #define aSz AES_BLOCK_SIZE