HomeSort by: relevance | last modified time | path
    Searched refs:crypto_pwhash_str_needs_rehash (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/test/default/
pwhash_argon2id.c 249 if (crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT) != 0 ||
250 crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT) != 0) {
253 if (crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT / 2) != 1 ||
254 crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT - 1, MEMLIMIT) != 1 ||
255 crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT * 2) != 1 ||
256 crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT + 1, MEMLIMIT) != 1) {
271 if (crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT / 2) != 1) {
274 if (crypto_pwhash_str_needs_rehash(str_out + 1, OPSLIMIT, MEMLIMIT) != -1 ||
pwhash_scrypt.c 360 assert(crypto_pwhash_str_needs_rehash(str_out, 0, 0) == -1);
361 assert(crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT) == -1);
pwhash_argon2i.c 261 if (crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT / 2) != 1) {
264 if (crypto_pwhash_str_needs_rehash(str_out + 1, OPSLIMIT, MEMLIMIT) != -1 ||
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
crypto_pwhash.h 134 int crypto_pwhash_str_needs_rehash(const char str[crypto_pwhash_STRBYTES],
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/
crypto_pwhash.c 192 crypto_pwhash_str_needs_rehash(const char str[crypto_pwhash_STRBYTES], function in typeref:typename:int

Completed in 145 milliseconds