Home
last modified time | relevance | path

Searched refs:crypto_hash_sha256_state (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_hash_sha256.h24 typedef struct crypto_hash_sha256_state { struct
28 } crypto_hash_sha256_state; argument
42 int crypto_hash_sha256_init(crypto_hash_sha256_state *state);
45 int crypto_hash_sha256_update(crypto_hash_sha256_state *state,
50 int crypto_hash_sha256_final(crypto_hash_sha256_state *state,
H A Dcrypto_auth_hmacsha256.h39 crypto_hash_sha256_state ictx;
40 crypto_hash_sha256_state octx;
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c154 SHA256_Pad(crypto_hash_sha256_state *state, uint32_t tmp32[64 + 8]) in SHA256_Pad()
176 crypto_hash_sha256_init(crypto_hash_sha256_state *state) in crypto_hash_sha256_init()
190 crypto_hash_sha256_update(crypto_hash_sha256_state *state, in crypto_hash_sha256_update()
231 crypto_hash_sha256_final(crypto_hash_sha256_state *state, unsigned char *out) in crypto_hash_sha256_final()
247 crypto_hash_sha256_state state; in crypto_hash_sha256()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_hash/sha256/
H A Dhash_sha256.c12 return sizeof(crypto_hash_sha256_state); in crypto_hash_sha256_statebytes()
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dhash.c43 assert(crypto_hash_sha256_statebytes() == sizeof(crypto_hash_sha256_state)); in main()