diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-11-23 19:00:12 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-11-23 19:00:12 +0100 |
commit | d496b4002a944af5832b8589cbc5f967abaf3dc4 (patch) | |
tree | 5493543e49fb8e9a1c12f95c0897c36b11b4a9f9 | |
parent | 25569c3ca987f37075e457d5203fb7b6c3d6ae84 (diff) | |
download | busybox-w32-d496b4002a944af5832b8589cbc5f967abaf3dc4.tar.gz busybox-w32-d496b4002a944af5832b8589cbc5f967abaf3dc4.tar.bz2 busybox-w32-d496b4002a944af5832b8589cbc5f967abaf3dc4.zip |
tls: typo fix in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/tls_aesgcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/tls_aesgcm.c b/networking/tls_aesgcm.c index 360e6f4ff..a06f8c8c5 100644 --- a/networking/tls_aesgcm.c +++ b/networking/tls_aesgcm.c | |||
@@ -82,9 +82,9 @@ static void GMULT(byte* X, byte* Y) | |||
82 | } | 82 | } |
83 | 83 | ||
84 | //bbox: | 84 | //bbox: |
85 | // for TLS AES-GCM, a (which as AAD) is always 13 bytes long, and bbox code provides | 85 | // for TLS AES-GCM, a (which is AAD) is always 13 bytes long, and bbox code provides |
86 | // extra 3 zeroed bytes, making it a[16], or a[AES_BLOCK_SIZE]. | 86 | // extra 3 zeroed bytes, making it a[16], or a[AES_BLOCK_SIZE]. |
87 | // Resulting auth tag in s is also always AES_BLOCK_SIZE bytes. | 87 | // Resulting auth tag in s[] is also always AES_BLOCK_SIZE bytes. |
88 | // | 88 | // |
89 | // This allows some simplifications. | 89 | // This allows some simplifications. |
90 | #define aSz AES_BLOCK_SIZE | 90 | #define aSz AES_BLOCK_SIZE |