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

  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
crypto_pwhash_argon2id.h 41 #define crypto_pwhash_argon2id_STRBYTES 128U
43 size_t crypto_pwhash_argon2id_strbytes(void);
101 int crypto_pwhash_argon2id_str(char out[crypto_pwhash_argon2id_STRBYTES],
108 int crypto_pwhash_argon2id_str_verify(const char str[crypto_pwhash_argon2id_STRBYTES],
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/argon2/
pwhash_argon2id.c 60 crypto_pwhash_argon2id_strbytes(void) function in typeref:typename:size_t
62 return crypto_pwhash_argon2id_STRBYTES;
178 crypto_pwhash_argon2id_str(char out[crypto_pwhash_argon2id_STRBYTES],
185 memset(out, 0, crypto_pwhash_argon2id_STRBYTES);
202 crypto_pwhash_argon2id_STRBYTES) != ARGON2_OK) {
209 crypto_pwhash_argon2id_str_verify(const char str[crypto_pwhash_argon2id_STRBYTES],
  /src/sys/external/isc/libsodium/dist/test/default/
pwhash_argon2id.c 235 str_out = (char *) sodium_malloc(crypto_pwhash_argon2id_STRBYTES);
236 str_out2 = (char *) sodium_malloc(crypto_pwhash_argon2id_STRBYTES);
295 assert(str_out[crypto_pwhash_argon2id_STRBYTES - 1U] == 0);
452 assert(crypto_pwhash_argon2id_strbytes() == crypto_pwhash_strbytes());

Completed in 16 milliseconds