Searched refs:nextiv (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/crypto/armv8/ |
H A D | armv8_crypto_wrap.c | 152 uint8x16_t ivreg, nextiv, tmp; in armv8_aes_decrypt_cbc() local 167 nextiv = vld1q_u8(block); in armv8_aes_decrypt_cbc() 169 (const void *)key->aes_key, nextiv); in armv8_aes_decrypt_cbc() 171 ivreg = nextiv; in armv8_aes_decrypt_cbc() 177 nextiv = vld1q_u8(from); in armv8_aes_decrypt_cbc() 179 (const void *)key->aes_key, nextiv); in armv8_aes_decrypt_cbc() 181 ivreg = nextiv; in armv8_aes_decrypt_cbc()
|
/freebsd/sys/crypto/aesni/ |
H A D | aesni_wrap.c | 78 __m128i ivreg, nextiv; in aesni_decrypt_cbc() local 89 nextiv = blks->blk[j]; in aesni_decrypt_cbc() 91 ivreg = nextiv; in aesni_decrypt_cbc() 98 nextiv = _mm_loadu_si128((void *)buf); in aesni_decrypt_cbc() 100 aesni_dec(rounds - 1, key_schedule, nextiv) ^ ivreg); in aesni_decrypt_cbc() 101 ivreg = nextiv; in aesni_decrypt_cbc()
|
/freebsd/contrib/bearssl/src/symcipher/ |
H A D | aes_pwr8_cbcdec.c | 593 unsigned char nextiv[16]; in br_aes_pwr8_cbcdec_run() local 600 memcpy(nextiv, buf + len - 16, 16); in br_aes_pwr8_cbcdec_run() 640 memcpy(iv, nextiv, 16); in br_aes_pwr8_cbcdec_run()
|