Searched defs:N_BLOCK (Results 1 – 2 of 2) sorted by relevance
393 static void add_round_key(uint_8t d[N_BLOCK], const uint_8t k[N_BLOCK]) { xor_block(d, k); } in add_round_key()395 static void shift_sub_rows(uint_8t st[N_BLOCK]) { in shift_sub_rows()423 static void inv_shift_sub_rows(uint_8t st[N_BLOCK]) { in inv_shift_sub_rows()452 static void mix_sub_columns(uint_8t dt[N_BLOCK]) {480 static void inv_mix_sub_columns(uint_8t dt[N_BLOCK]) {574 return_type aes_encrypt(const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK],604 unsigned char iv[N_BLOCK], const aes_context ctx[1]) {623 return_type aes_decrypt(const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK],653 unsigned char iv[N_BLOCK], const aes_context ctx[1]) {675 static void update_encrypt_key_128(uint_8t k[N_BLOCK], uint_8t* rc) {[all …]
55 #define N_BLOCK (N_ROW * N_COL) macro