| /src/external/apache2/argon2/dist/phc-winner-argon2/src/ |
| bench.c | 48 * Benchmarks Argon2 with salt length 16, password length 16, t_cost 3, 62 uint32_t t_cost = 3; local 87 argon2_hash(t_cost, m_cost, thread_n, pwd_array, inlen, 99 "Mcycles \n", argon2_type2string(type, 1), t_cost,
|
| genkat.c | 39 context->m_cost, context->t_cost, context->lanes, 145 unsigned t_cost = 3; local 165 context.t_cost = t_cost;
|
| run.c | 85 @t_cost number of iterations 94 static void run(uint32_t outlen, char *pwd, size_t pwdlen, char *salt, uint32_t t_cost, 127 encodedlen = argon2_encodedlen(t_cost, m_cost, lanes, (uint32_t)saltlen, outlen, type); 134 result = argon2_hash(t_cost, m_cost, threads, pwd, pwdlen, salt, saltlen, 173 uint32_t t_cost = T_COST_DEF; local 259 t_cost = input; 327 printf("Iterations:\t%u\n", t_cost); 332 run(outlen, pwd, pwdlen, salt, t_cost, m_cost, lanes, threads, type,
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/ |
| 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...] |
| /src/external/apache2/argon2/dist/phc-winner-argon2/include/ |
| argon2.h | 207 uint32_t t_cost; /* number of passes */ member in struct:Argon2_Context 251 * @param t_cost Number of iterations 264 ARGON2_PUBLIC int argon2i_hash_encoded(const uint32_t t_cost, 274 * @param t_cost Number of iterations 286 ARGON2_PUBLIC int argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost, 292 ARGON2_PUBLIC int argon2d_hash_encoded(const uint32_t t_cost, 300 ARGON2_PUBLIC int argon2d_hash_raw(const uint32_t t_cost, const uint32_t m_cost, 306 ARGON2_PUBLIC int argon2id_hash_encoded(const uint32_t t_cost, 314 ARGON2_PUBLIC int argon2id_hash_raw(const uint32_t t_cost, 322 ARGON2_PUBLIC int argon2_hash(const uint32_t t_cost, const uint32_t m_cost [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/kdfs/ |
| argon2.c | 166 uint32_t t_cost; member in struct:__anon546 208 static int kdf_argon2_ctx_set_t_cost(KDF_ARGON2 *ctx, uint32_t t_cost); 658 args[3] = ctx->t_cost; 916 c->t_cost = ARGON2_DEFAULT_T_COST; 1100 ctx->passes = ctx->t_cost; 1182 static int kdf_argon2_ctx_set_t_cost(KDF_ARGON2 *ctx, uint32_t t_cost) 1186 if (t_cost < ARGON2_MIN_TIME) { 1192 ctx->t_cost = t_cost;
|