Searched refs:rounds (Results 1 – 3 of 3) sorted by relevance
49 unsigned rounds; in sha_crypt() local63 rounds = ROUNDS_DEFAULT; in sha_crypt()71 rounds = cnt; in sha_crypt()72 if (rounds < ROUNDS_MIN) in sha_crypt()73 rounds = ROUNDS_MIN; in sha_crypt()74 if (rounds > ROUNDS_MAX) in sha_crypt()75 rounds = ROUNDS_MAX; in sha_crypt()77 resptr += sprintf(resptr, str_rounds, rounds); in sha_crypt()172 for (cnt = 0; cnt < rounds; ++cnt) { in sha_crypt()
138 int rounds, words_key, words_RoundKey; in KeyExpansion() local145 rounds = 6 + (key_len / 4); in KeyExpansion()174 return rounds; in KeyExpansion()331 unsigned rounds = aes->rounds; in aes_encrypt_1() local339 if (--rounds == 0) in aes_encrypt_1()348 aes->rounds = KeyExpansion(aes->key, key, key_len); in aes_setkey()396 unsigned rounds = aes->rounds; in aes_decrypt_1() local399 RoundKey += rounds * 4; in aes_decrypt_1()406 if (--rounds == 0) in aes_decrypt_1()415 unsigned rounds = aes->rounds;
837 unsigned rounds; member