Home | History | Annotate | Download | only in smp

Lines Matching refs:n_block

55 #define N_BLOCK   (N_ROW * N_COL)
69 { uint_8t ksch[(N_MAX_ROUNDS + 1) * N_BLOCK];
90 return_type aes_encrypt( const unsigned char in[N_BLOCK],
91 unsigned char out[N_BLOCK],
96 int n_block,
97 unsigned char iv[N_BLOCK],
103 return_type aes_decrypt( const unsigned char in[N_BLOCK],
104 unsigned char out[N_BLOCK],
109 int n_block,
110 unsigned char iv[N_BLOCK],
135 void aes_encrypt_128( const unsigned char in[N_BLOCK],
136 unsigned char out[N_BLOCK],
137 const unsigned char key[N_BLOCK],
138 uint_8t o_key[N_BLOCK] );
142 void aes_decrypt_128( const unsigned char in[N_BLOCK],
143 unsigned char out[N_BLOCK],
144 const unsigned char key[N_BLOCK],
145 unsigned char o_key[N_BLOCK] );
149 void aes_encrypt_256( const unsigned char in[N_BLOCK],
150 unsigned char out[N_BLOCK],
151 const unsigned char key[2 * N_BLOCK],
152 unsigned char o_key[2 * N_BLOCK] );
156 void aes_decrypt_256( const unsigned char in[N_BLOCK],
157 unsigned char out[N_BLOCK],
158 const unsigned char key[2 * N_BLOCK],
159 unsigned char o_key[2 * N_BLOCK] );