Searched refs:AES_BLOCKLEN (Results 1 – 1 of 1) sorted by relevance
85 #define AES_BLOCKLEN 16 macro159 u_int8_t iv[AES_BLOCKLEN] __attribute__((aligned(4))), *dptr; in esp_cbc_decrypt_aes()160 u_int8_t sbuf[AES_BLOCKLEN] __attribute__((aligned(4))), *sp, *sp_unaligned; in esp_cbc_decrypt_aes()167 if (ivlen != AES_BLOCKLEN) { in esp_cbc_decrypt_aes()189 if ((m->m_pkthdr.len - bodyoff) % AES_BLOCKLEN) { in esp_cbc_decrypt_aes()192 algo->name, AES_BLOCKLEN)); in esp_cbc_decrypt_aes()227 if (sn + AES_BLOCKLEN <= s->m_len) { in esp_cbc_decrypt_aes()231 len -= len % AES_BLOCKLEN; // full blocks only in esp_cbc_decrypt_aes()234 m_copydata(s, sn, AES_BLOCKLEN, (caddr_t) sbuf); in esp_cbc_decrypt_aes()236 len = AES_BLOCKLEN; // 1 block only in sbuf in esp_cbc_decrypt_aes()[all …]