diff options
author | Denys Vlasenko | 2018-11-23 18:31:26 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-11-23 18:31:26 +0100 |
commit | ecc9090cfcccf412288147f385808f8f9df97ebe (patch) | |
tree | 0c937204026d3a2420597180e3db07cb3896ade3 /networking/tls_aesgcm.h | |
parent | 5e4236d226309a32842a6928878fd0e1cd5937e7 (diff) | |
download | busybox-ecc9090cfcccf412288147f385808f8f9df97ebe.zip busybox-ecc9090cfcccf412288147f385808f8f9df97ebe.tar.gz |
tls: simplify aesgcm_GHASH()
function old new delta
xwrite_encrypted 604 599 -5
FlattenSzInBits 52 - -52
aesgcm_GHASH 395 262 -133
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 0/2 up/down: 0/-190) Total: -190 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls_aesgcm.h')
-rw-r--r-- | networking/tls_aesgcm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/tls_aesgcm.h b/networking/tls_aesgcm.h index a71eced..75694f3 100644 --- a/networking/tls_aesgcm.h +++ b/networking/tls_aesgcm.h @@ -7,7 +7,7 @@ void xorbuf(void* buf, const void* mask, unsigned count) FAST_FUNC; void aesgcm_GHASH(uint8_t* h, - const uint8_t* a, unsigned aSz, + const uint8_t* a, //unsigned aSz, const uint8_t* c, unsigned cSz, - uint8_t* s, unsigned sSz + uint8_t* s //, unsigned sSz ) FAST_FUNC; |