Home
last modified time | relevance | path

Searched refs:crypto_auth_hmacsha512_KEYBYTES (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/libsodium/src/libsodium/crypto_auth/hmacsha512/
H A Dauth_hmacsha512.c21 return crypto_auth_hmacsha512_KEYBYTES; in crypto_auth_hmacsha512_keybytes()
31 crypto_auth_hmacsha512_keygen(unsigned char k[crypto_auth_hmacsha512_KEYBYTES]) in crypto_auth_hmacsha512_keygen() argument
33 randombytes_buf(k, crypto_auth_hmacsha512_KEYBYTES); in crypto_auth_hmacsha512_keygen()
101 crypto_auth_hmacsha512_init(&state, k, crypto_auth_hmacsha512_KEYBYTES); in crypto_auth_hmacsha512()
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_auth_hmacsha512.h19 #define crypto_auth_hmacsha512_KEYBYTES 32U macro
61 void crypto_auth_hmacsha512_keygen(unsigned char k[crypto_auth_hmacsha512_KEYBYTES]);
/freebsd/sys/contrib/libsodium/test/default/
H A Dmetamorphic.c150 k = (unsigned char *) sodium_malloc(crypto_auth_hmacsha512_KEYBYTES); in mm_hmacsha512()
157 crypto_auth_hmacsha512_init(&st, k, crypto_auth_hmacsha512_KEYBYTES); in mm_hmacsha512()
H A Dkeygen.c17 { crypto_auth_hmacsha512_keygen, crypto_auth_hmacsha512_KEYBYTES }, in tv_keygen()