Home
last modified time | relevance | path

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

/busybox-1.35.0/libbb/
Dpw_encrypt_sha.c49 unsigned rounds; in sha_crypt() local
63 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()
/busybox-1.35.0/networking/
Dtls_aes.c138 int rounds, words_key, words_RoundKey; in KeyExpansion() local
145 rounds = 6 + (key_len / 4); in KeyExpansion()
174 return rounds; in KeyExpansion()
331 unsigned rounds = aes->rounds; in aes_encrypt_1() local
339 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() local
399 RoundKey += rounds * 4; in aes_decrypt_1()
406 if (--rounds == 0) in aes_decrypt_1()
415 unsigned rounds = aes->rounds;
/busybox-1.35.0/include/
Dlibbb.h837 unsigned rounds; member