Lines Matching defs:iterations
47 * The default iterations - should take >0s on a fast CPU
64 * to 24680. The goals are that the number of iterations should take
90 * $<tag>$<iterations>$<salt>$<digest>
94 * <iterations> is an unsigned int identifying how many rounds
122 unsigned int iterations;
129 * $<tag>$<iterations>$salt[$]
130 * If it does not start with $ we use our default iterations.
137 iterations = strtoul(salt, &ep, 10);
142 iterations = __crypt_sha1_iterations(0);
155 * Prime the pump with <salt><magic><iterations>
158 sl, salt, magic, iterations);
163 for (i = 1; i < iterations; i++) {
168 magic, iterations, sl, salt);