Lines Matching refs:N_BLOCK
55 #define N_BLOCK (N_ROW * N_COL) macro
69 uint_8t ksch[(N_MAX_ROUNDS + 1) * N_BLOCK];
89 return_type aes_encrypt(const unsigned char in[N_BLOCK],
90 unsigned char out[N_BLOCK], const aes_context ctx[1]);
93 int n_block, unsigned char iv[N_BLOCK],
99 return_type aes_decrypt(const unsigned char in[N_BLOCK],
100 unsigned char out[N_BLOCK], const aes_context ctx[1]);
103 int n_block, unsigned char iv[N_BLOCK],
128 void aes_encrypt_128(const unsigned char in[N_BLOCK],
129 unsigned char out[N_BLOCK],
130 const unsigned char key[N_BLOCK], uint_8t o_key[N_BLOCK]);
134 void aes_decrypt_128(const unsigned char in[N_BLOCK],
135 unsigned char out[N_BLOCK],
136 const unsigned char key[N_BLOCK],
137 unsigned char o_key[N_BLOCK]);
141 void aes_encrypt_256(const unsigned char in[N_BLOCK],
142 unsigned char out[N_BLOCK],
143 const unsigned char key[2 * N_BLOCK],
144 unsigned char o_key[2 * N_BLOCK]);
148 void aes_decrypt_256(const unsigned char in[N_BLOCK],
149 unsigned char out[N_BLOCK],
150 const unsigned char key[2 * N_BLOCK],
151 unsigned char o_key[2 * N_BLOCK]);