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

  /src/crypto/external/apache2/openssl/dist/apps/
passwd.c 555 unsigned long int srounds = strtoul(num, &endp, 10); local
558 if (srounds > ROUNDS_MAX)
560 else if (srounds < ROUNDS_MIN)
563 rounds = (unsigned int)srounds;
  /src/crypto/external/bsd/openssl/dist/apps/
passwd.c 550 unsigned long int srounds = strtoul (num, &endp, 10); local
553 if (srounds > ROUNDS_MAX)
555 else if (srounds < ROUNDS_MIN)
558 rounds = (unsigned int)srounds;
  /src/crypto/external/bsd/openssl.old/dist/apps/
passwd.c 547 unsigned long int srounds = strtoul (num, &endp, 10); local
550 if (srounds > ROUNDS_MAX)
552 else if (srounds < ROUNDS_MIN)
555 rounds = (unsigned int)srounds;

Completed in 33 milliseconds