Home
last modified time | relevance | path

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

/u-boot/lib/
A Daes.c540 u32 idx, aes_rounds, aes_keycols; in aes_expand_key() local
542 aes_rounds = aes_get_rounds(key_len); in aes_expand_key()
547 for (idx = aes_keycols; idx < AES_STATECOLS * (aes_rounds + 1); idx++) { in aes_expand_key()
576 u32 round, aes_rounds; in aes_encrypt() local
578 aes_rounds = aes_get_rounds(key_len); in aes_encrypt()
583 for (round = 1; round < aes_rounds + 1; round++) { in aes_encrypt()
584 if (round < aes_rounds) in aes_encrypt()
599 int round, aes_rounds; in aes_decrypt() local
601 aes_rounds = aes_get_rounds(key_len); in aes_decrypt()
606 (u32 *)expkey + aes_rounds * AES_STATECOLS); in aes_decrypt()
[all …]

Completed in 4 milliseconds