Lines Matching full:rounds
70 {"rounds", required_argument, NULL, 'R'},
87 const unsigned int rounds; /* supports a variable number of rounds */ member
92 /* method prefix minlen, maxlen rounds description */
140 unsigned int rounds = 0; in main() local
171 rounds_support = methods[i].rounds; in main()
192 rounds = strtol(optarg, &p, 10); in main()
193 if (p == NULL || *p != '\0' || rounds < 0) { in main()
238 if (rounds <= 5) in main()
239 rounds = 5; in main()
240 /* actually for 2a/2y it is the logarithm of the number of rounds */ in main()
241 snprintf(rounds_str, sizeof(rounds_str), "%02u$", rounds); in main()
242 } else if (rounds_support && rounds) in main()
243 snprintf(rounds_str, sizeof(rounds_str), "rounds=%u$", rounds); in main()
287 salt = crypt_gensalt(salt_prefix, rounds, entropy, 64); in main()
435 " -R, --rounds=NUMBER use the specified NUMBER of rounds\n" in display_help()