Home
last modified time | relevance | path

Searched refs:log_rounds (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/crypt_modules/bsdbf/
H A Dbcrypt.c164 bcrypt_gensalt(uint8_t log_rounds) in bcrypt_gensalt() argument
177 if (log_rounds < BCRYPT_MINLOGROUNDS) in bcrypt_gensalt()
178 log_rounds = BCRYPT_MINLOGROUNDS; in bcrypt_gensalt()
179 else if (log_rounds > BCRYPT_MAXLOGROUNDS) in bcrypt_gensalt()
180 log_rounds = BCRYPT_MAXLOGROUNDS; in bcrypt_gensalt()
182 encode_salt(gsalt, csalt, BCRYPT_MAXSALT, log_rounds); in bcrypt_gensalt()