void InvSubBytes(unsigned int *state){
  int i=0;
  for(i=0;i<4;i++)
    state[i]=InvSubWord(state[i]);
}
Exemple #2
0
static void InvSubBytes(unsigned char **state) {
	int i;
	for (i = 0; i < 4; i++) {
		InvSubWord(state[i]);
	}
}