Searched refs:POLY1305_TAGLEN (Results 1 – 7 of 7) sorted by relevance
/external/openssh/ |
D | poly1305.h | 14 #define POLY1305_TAGLEN 16 macro 16 void poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen, 18 __attribute__((__bounded__(__minbytes__, 1, POLY1305_TAGLEN)))
|
D | cipher-chachapoly.c | 75 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; in chachapoly_crypt() 93 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) { in chachapoly_crypt()
|
D | cipher-chachapoly-libcrypto.c | 91 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; in chachapoly_crypt() 112 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) { in chachapoly_crypt()
|
D | poly1305.c | 34 poly1305_auth(unsigned char out[POLY1305_TAGLEN], const unsigned char *m, size_t inlen, const unsig… in poly1305_auth() argument
|
/external/libwebsockets/plugins/ssh-base/crypto/ |
D | chacha.c | 258 keys->MAC_length = POLY1305_TAGLEN; in lws_chacha_activate() 307 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; in chachapoly_crypt() 325 if (lws_timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN)) { in chachapoly_crypt() 358 return chachapoly_crypt(keys, seq, pt, ct, len - POLY1305_TAGLEN - 4, 4, in lws_chacha_decrypt() 359 POLY1305_TAGLEN, 0); in lws_chacha_decrypt()
|
D | poly1305.c | 28 poly1305_auth(unsigned char out[POLY1305_TAGLEN], in poly1305_auth() argument
|
/external/libwebsockets/plugins/ssh-base/include/ |
D | lws-ssh.h | 50 #define POLY1305_TAGLEN 16 macro 581 poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen,
|