Home
last modified time | relevance | path

Searched refs:crypto_hash_sha512_state (Results 1 – 10 of 10) sorted by relevance

/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_hash_sha512.h24 typedef struct crypto_hash_sha512_state { struct
28 } crypto_hash_sha512_state; argument
42 int crypto_hash_sha512_init(crypto_hash_sha512_state *state);
45 int crypto_hash_sha512_update(crypto_hash_sha512_state *state,
50 int crypto_hash_sha512_final(crypto_hash_sha512_state *state,
H A Dcrypto_auth_hmacsha512.h39 crypto_hash_sha512_state ictx;
40 crypto_hash_sha512_state octx;
H A Dcrypto_sign_ed25519.h16 crypto_hash_sha512_state hs;
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_sign/ed25519/ref10/
H A Dsign.c12 _crypto_sign_ed25519_ref10_hinit(crypto_hash_sha512_state *hs, int prehashed) in _crypto_sign_ed25519_ref10_hinit()
38 _crypto_sign_ed25519_synthetic_r_hv(crypto_hash_sha512_state *hs, in _crypto_sign_ed25519_synthetic_r_hv()
69 crypto_hash_sha512_state hs; in _crypto_sign_ed25519_detached()
H A Dsign_ed25519_ref10.h4 void _crypto_sign_ed25519_ref10_hinit(crypto_hash_sha512_state *hs,
H A Dopen.c20 crypto_hash_sha512_state hs; in _crypto_sign_ed25519_verify_detached()
H A Dobsolete.c37 crypto_hash_sha512_state hs; in crypto_sign_edwards25519sha512batch()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c173 SHA512_Pad(crypto_hash_sha512_state *state, uint64_t tmp64[80 + 8]) in SHA512_Pad()
195 crypto_hash_sha512_init(crypto_hash_sha512_state *state) in crypto_hash_sha512_init()
210 crypto_hash_sha512_update(crypto_hash_sha512_state *state, in crypto_hash_sha512_update()
259 crypto_hash_sha512_final(crypto_hash_sha512_state *state, unsigned char *out) in crypto_hash_sha512_final()
275 crypto_hash_sha512_state state; in crypto_hash_sha512()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_hash/sha512/
H A Dhash_sha512.c12 return sizeof(crypto_hash_sha512_state); in crypto_hash_sha512_statebytes()
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dhash.c44 assert(crypto_hash_sha512_statebytes() == sizeof(crypto_hash_sha512_state)); in main()