diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-11-24 13:51:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-11-24 13:51:46 +0100 |
commit | 941440cf166ef77ad82c4ead9eae3a8a2552a418 (patch) | |
tree | d97607a0d7515ff412dff5b1aa82681569a89b8a /networking/tls.h | |
parent | 985702c892d94ac9656754b94402dee933abb156 (diff) |
tls: in AES-GCM decoding, avoid memmove
function old new delta
xorbuf3 - 36 +36
xorbuf 24 12 -12
tls_xread_record 656 634 -22
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 0/2 up/down: 36/-34) Total: 2 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls.h')
-rw-r--r-- | networking/tls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/tls.h b/networking/tls.h index f2ef67aac..4b0dc7459 100644 --- a/networking/tls.h +++ b/networking/tls.h @@ -81,6 +81,7 @@ typedef int16_t int16; #define AES_BLOCK_SIZE 16 void tls_get_random(void *buf, unsigned len) FAST_FUNC; +void xorbuf(void* buf, const void* mask, unsigned count) FAST_FUNC; #define matrixCryptoGetPrngData(buf, len, userPtr) (tls_get_random(buf, len), PS_SUCCESS) |