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

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2.c 56 instance.passes = context->t_cost;
86 argon2_hash(const uint32_t t_cost, const uint32_t m_cost,
123 context.t_cost = t_cost;
159 argon2i_hash_encoded(const uint32_t t_cost, const uint32_t m_cost,
165 return argon2_hash(t_cost, m_cost, parallelism, pwd, pwdlen, salt, saltlen,
170 argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
175 return argon2_hash(t_cost, m_cost, parallelism, pwd, pwdlen, salt, saltlen,
180 argon2id_hash_encoded(const uint32_t t_cost, const uint32_t m_cost,
186 return argon2_hash(t_cost, m_cost, parallelism, pwd, pwdlen, salt, saltlen
    [all...]
argon2.h 179 uint32_t t_cost; /* number of passes */ member in struct:Argon2_Context
199 * @param t_cost Number of iterations
212 int argon2i_hash_encoded(const uint32_t t_cost, const uint32_t m_cost,
220 * @param t_cost Number of iterations
233 int argon2id_hash_encoded(const uint32_t t_cost, const uint32_t m_cost,
241 * @param t_cost Number of iterations
253 int argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
260 * @param t_cost Number of iterations
272 int argon2id_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
278 int argon2_hash(const uint32_t t_cost, const uint32_t m_cost
    [all...]
argon2-encoding.c 181 DECIMAL_U32(ctx->t_cost);
182 if (ctx->t_cost > UINT32_MAX) {
291 SX(ctx->t_cost);
argon2-core.c 337 if (ARGON2_MIN_TIME > context->t_cost) {
341 if (ARGON2_MAX_TIME < context->t_cost) {
413 STORE32_LE(value, context->t_cost);
pwhash_argon2i.c 267 } else if (ctx.t_cost != (uint32_t) opslimit ||
  /src/lib/libcrypt/
crypt-argon2.c 308 * t_cost (t)
326 ctx->t_cost = tmp;
421 rc = argon2_hash(ctx.t_cost, ctx.m_cost,

Completed in 15 milliseconds