Searched defs:rounds (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/crypt_modules/bsdbf/
H A Dbcrypt.c45 * REPEAT rounds:
69 * You can have up to 2^31 rounds which should be enough for some
76 #define BCRYPT_MINROUNDS 16 /* we have log2(rounds) in salt */
190 uint32_t rounds, i, k; local
227 if ((rounds = (uint32_t) 1 << (logr = atoi(salt))) < BCRYPT_MINROUNDS)
230 /* Discard num rounds + "$" identifier */
245 for (k = 0; k < rounds; k++) {
/osnet-11/usr/src/lib/crypt_modules/sha256/
H A Dcrypt_sha.c120 #define ROUNDS "rounds="
124 * get the integer value after rounds= where ever it occurs in the string.
176 int rounds = ROUNDS_DEFAULT; local
193 rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX));
263 for (i = 0; i < rounds; i++) {
297 "%s$rounds=%zu$", crypt_alg_magic, rounds);
382 * If the config file has a higher value for rounds= than what
409 "%s$rounds=%d$",
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSSL.c106 * result is assumed to be larger than rounds * MD5_DIGEST_LENGTH.
110 uint_t rand1len, uchar_t *rand2, uint_t rand2len, int rounds,
118 for (i = 0; i < rounds; i++) {
653 int rounds, n = 0; local
762 rounds = howmany(size, MD5_DIGEST_LENGTH);
769 ClientRandomLen, rounds, kb);
109 soft_ssl3_churn(uchar_t *secret, uint_t secretlen, uchar_t *rand1, uint_t rand1len, uchar_t *rand2, uint_t rand2len, int rounds, uchar_t *result) argument
/osnet-11/usr/src/lib/libumem/common/
H A Dumem.c1622 umem_cpu_reload(umem_cpu_cache_t *ccp, umem_magazine_t *mp, int rounds) argument
1625 (ccp->cc_loaded && ccp->cc_rounds + rounds == ccp->cc_magsize));
1631 ccp->cc_rounds = rounds;
2056 int rounds, prounds, cpu_seqid; local
2066 rounds = ccp->cc_rounds;
2076 umem_magazine_destroy(cp, mp, rounds);

Completed in 37 milliseconds