Home
last modified time | relevance | path

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

/freebsd/sys/contrib/libsodium/test/default/
H A Dpwhash_argon2i.c275 if (crypto_pwhash_argon2i_str_verify(str_out, passwd, strlen(passwd)) != 0) { in str_tests()
279 if (crypto_pwhash_argon2i_str_verify(str_out, passwd, strlen(passwd)) != -1) { in str_tests()
293 if (crypto_pwhash_argon2i_str_verify("$argon2i$m=65536,t=2,p=1c29tZXNhbHQ" in str_tests()
298 if (crypto_pwhash_argon2i_str_verify("$argon2i$m=65536,t=2,p=1c29tZXNhbHQ" in str_tests()
303 if (crypto_pwhash_argon2i_str_verify("$argon2i$m=65536,t=2,p=1$c29tZXNhbHQ" in str_tests()
366 assert(crypto_pwhash_argon2i_str_verify(str_out, "test", 4) == 0); in str_tests()
H A Dpwhash_argon2id.c379 assert(crypto_pwhash_argon2i_str_verify(str_out, "test", 4) == 0); in str_tests()
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_pwhash_argon2i.h108 int crypto_pwhash_argon2i_str_verify(const char str[crypto_pwhash_argon2i_STRBYTES],
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/
H A Dcrypto_pwhash.c184 return crypto_pwhash_argon2i_str_verify(str, passwd, passwdlen); in crypto_pwhash_str_verify()
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dpwhash_argon2i.c213 crypto_pwhash_argon2i_str_verify(const char str[crypto_pwhash_argon2i_STRBYTES], in crypto_pwhash_argon2i_str_verify() function