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

  /src/sys/external/isc/libsodium/dist/test/default/
pwhash_argon2i.c 373 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out, 0, 0) == -1);
376 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out, 0, 0) == -1);
377 assert(crypto_pwhash_argon2id_str_needs_rehash("", OPSLIMIT, MEMLIMIT) == -1);
381 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out,
383 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out,
385 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out,
387 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out, 0, 0) == 1);
389 assert(crypto_pwhash_argon2id_str_needs_rehash("", OPSLIMIT, MEMLIMIT) == -1);
390 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out + 1,
pwhash_argon2id.c 259 if (crypto_pwhash_argon2id_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT / 2) != 1 ||
260 crypto_pwhash_argon2id_str_needs_rehash(str_out, OPSLIMIT - 1, MEMLIMIT) != 1 ||
261 crypto_pwhash_argon2id_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT * 2) != 1 ||
262 crypto_pwhash_argon2id_str_needs_rehash(str_out, OPSLIMIT + 1, MEMLIMIT) != 1) {
275 crypto_pwhash_argon2id_str_needs_rehash(str_out + 1, OPSLIMIT, MEMLIMIT) != -1) {
365 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out,
367 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out,
369 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out,
371 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out, 0, 0) == 1);
373 assert(crypto_pwhash_argon2id_str_needs_rehash(str_out + 1
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
crypto_pwhash_argon2id.h 114 int crypto_pwhash_argon2id_str_needs_rehash(const char str[crypto_pwhash_argon2id_STRBYTES],
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/
crypto_pwhash.c 197 return crypto_pwhash_argon2id_str_needs_rehash(str, opslimit, memlimit);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
pwhash_argon2i.c 286 crypto_pwhash_argon2id_str_needs_rehash(const char str[crypto_pwhash_argon2id_STRBYTES], function in typeref:typename:int

Completed in 15 milliseconds