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, *sp_aligned = NULL; in esp_cbc_decrypt_aes()166 if (ivlen != AES_BLOCKLEN) { in esp_cbc_decrypt_aes()188 if ((m->m_pkthdr.len - bodyoff) % AES_BLOCKLEN) { in esp_cbc_decrypt_aes()191 algo->name, AES_BLOCKLEN)); in esp_cbc_decrypt_aes()226 if (sn + AES_BLOCKLEN <= s->m_len) { in esp_cbc_decrypt_aes()230 len -= len % AES_BLOCKLEN; // full blocks only in esp_cbc_decrypt_aes()233 m_copydata(s, sn, AES_BLOCKLEN, (caddr_t) sbuf); in esp_cbc_decrypt_aes()235 len = AES_BLOCKLEN; // 1 block only in sbuf in esp_cbc_decrypt_aes()[all …]