Home
last modified time | relevance | path

Searched refs:crypto_auth_hmacsha512_state (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_auth_hmacsha512.h38 typedef struct crypto_auth_hmacsha512_state { struct
41 } crypto_auth_hmacsha512_state; argument
47 int crypto_auth_hmacsha512_init(crypto_auth_hmacsha512_state *state,
52 int crypto_auth_hmacsha512_update(crypto_auth_hmacsha512_state *state,
57 int crypto_auth_hmacsha512_final(crypto_auth_hmacsha512_state *state,
H A Dcrypto_auth_hmacsha512256.h36 typedef crypto_auth_hmacsha512_state crypto_auth_hmacsha512256_state;
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_auth/hmacsha512/
H A Dauth_hmacsha512.c27 return sizeof(crypto_auth_hmacsha512_state); in crypto_auth_hmacsha512_statebytes()
37 crypto_auth_hmacsha512_init(crypto_auth_hmacsha512_state *state, in crypto_auth_hmacsha512_init()
72 crypto_auth_hmacsha512_update(crypto_auth_hmacsha512_state *state, in crypto_auth_hmacsha512_update()
81 crypto_auth_hmacsha512_final(crypto_auth_hmacsha512_state *state, in crypto_auth_hmacsha512_final()
99 crypto_auth_hmacsha512_state state; in crypto_auth_hmacsha512()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_auth/hmacsha512256/
H A Dauth_hmacsha512256.c42 return crypto_auth_hmacsha512_init((crypto_auth_hmacsha512_state *) state, in crypto_auth_hmacsha512256_init()
51 return crypto_auth_hmacsha512_update((crypto_auth_hmacsha512_state *) state, in crypto_auth_hmacsha512256_update()
61 crypto_auth_hmacsha512_final((crypto_auth_hmacsha512_state *) state, out0); in crypto_auth_hmacsha512256_final()
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dauth.c21 crypto_auth_hmacsha512_state st; in main()
26 sizeof(crypto_auth_hmacsha512_state)); in main()
82 sizeof(crypto_auth_hmacsha512_state)); in main()
H A Dmetamorphic.c139 crypto_auth_hmacsha512_state st; in mm_hmacsha512()