Home
last modified time | relevance | path

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

/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
H A Dcrypto_auth_hmacsha256.h38 typedef struct crypto_auth_hmacsha256_state { struct
41 } crypto_auth_hmacsha256_state; argument
47 int crypto_auth_hmacsha256_init(crypto_auth_hmacsha256_state *state,
52 int crypto_auth_hmacsha256_update(crypto_auth_hmacsha256_state *state,
57 int crypto_auth_hmacsha256_final(crypto_auth_hmacsha256_state *state,
/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha256/
H A Dauth_hmacsha256.c27 return sizeof(crypto_auth_hmacsha256_state); in crypto_auth_hmacsha256_statebytes()
37 crypto_auth_hmacsha256_init(crypto_auth_hmacsha256_state *state, in crypto_auth_hmacsha256_init()
72 crypto_auth_hmacsha256_update(crypto_auth_hmacsha256_state *state, in crypto_auth_hmacsha256_update()
81 crypto_auth_hmacsha256_final(crypto_auth_hmacsha256_state *state, in crypto_auth_hmacsha256_final()
99 crypto_auth_hmacsha256_state state; in crypto_auth_hmacsha256()
/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dpbkdf2-sha256.c50 crypto_auth_hmacsha256_state PShctx, hctx; in PBKDF2_SHA256()
71 memcpy(&hctx, &PShctx, sizeof(crypto_auth_hmacsha256_state)); in PBKDF2_SHA256()
/netbsd-src/sys/external/isc/libsodium/dist/test/default/
H A Dauth.c22 crypto_auth_hmacsha256_state st256; in main()
80 sizeof(crypto_auth_hmacsha256_state)); in main()
H A Dmetamorphic.c99 crypto_auth_hmacsha256_state st; in mm_hmacsha256()