HomeSort by: relevance | last modified time | path
    Searched refs:POLY1305_TAGLEN (Results 1 - 4 of 4) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
poly1305.h 15 #define POLY1305_TAGLEN 16
17 void poly1305_auth(u_char out[POLY1305_TAGLEN], const u_char *m, size_t inlen,
19 __attribute__((__bounded__(__minbytes__, 1, POLY1305_TAGLEN)))
cipher-chachapoly.c 63 * POLY1305_TAGLEN bytes at offset 'len'+'aadlen' as the authentication
72 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN];
90 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
cipher-chachapoly-libcrypto.c 77 * POLY1305_TAGLEN bytes at offset 'len'+'aadlen' as the authentication
86 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN];
107 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
poly1305.c 33 poly1305_auth(unsigned char out[POLY1305_TAGLEN], const unsigned char *m, size_t inlen, const unsigned char key[POLY1305_KEYLEN]) {

Completed in 17 milliseconds