Home
last modified time | relevance | path

Searched refs:crypto_pwhash_argon2i_STRBYTES (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_pwhash_argon2i.h41 #define crypto_pwhash_argon2i_STRBYTES 128U macro
101 int crypto_pwhash_argon2i_str(char out[crypto_pwhash_argon2i_STRBYTES],
108 int crypto_pwhash_argon2i_str_verify(const char str[crypto_pwhash_argon2i_STRBYTES],
114 int crypto_pwhash_argon2i_str_needs_rehash(const char str[crypto_pwhash_argon2i_STRBYTES],
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dpwhash_argon2i.c66 return crypto_pwhash_argon2i_STRBYTES; in crypto_pwhash_argon2i_strbytes()
182 crypto_pwhash_argon2i_str(char out[crypto_pwhash_argon2i_STRBYTES], in crypto_pwhash_argon2i_str() argument
189 memset(out, 0, crypto_pwhash_argon2i_STRBYTES); in crypto_pwhash_argon2i_str()
206 crypto_pwhash_argon2i_STRBYTES) != ARGON2_OK) { in crypto_pwhash_argon2i_str()
213 crypto_pwhash_argon2i_str_verify(const char str[crypto_pwhash_argon2i_STRBYTES], in crypto_pwhash_argon2i_str_verify() argument
279 crypto_pwhash_argon2i_str_needs_rehash(const char str[crypto_pwhash_argon2i_STRBYTES], in crypto_pwhash_argon2i_str_needs_rehash() argument
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dpwhash_argon2i.c429 assert(crypto_pwhash_argon2i_strbytes() == crypto_pwhash_argon2i_STRBYTES); in main()