Exemplo n.º 1
0
Arquivo: c_aes.c Projeto: aikko/crypto
// Perform the inverse mix columns matrix on each column of the 16 bytes
void mix_cols_inv (byte *state) {
  mix_col_inv(state);
  mix_col_inv(state+4);
  mix_col_inv(state+8);
  mix_col_inv(state+12);
}
Exemplo n.º 2
0
Arquivo: aes.c Projeto: noahp/aes_c
// Perform the inverse mix columns matrix on each column of the 16 bytes
static void mix_cols_inv (unsigned char *state) {
  mix_col_inv(state);
  mix_col_inv(state+4);
  mix_col_inv(state+8);
  mix_col_inv(state+12);
}