mirror of https://github.com/kokke/tiny-AES-c
Update aes.c
This commit is contained in:
parent
cde9cf2e65
commit
6acd653909
8
aes.c
8
aes.c
|
@ -179,10 +179,10 @@ static void KeyExpansion()
|
|||
tempa[3] = getSBoxValue(tempa[3]);
|
||||
}
|
||||
}
|
||||
RoundKey[ i * 4 ] = RoundKey[(i - Nk) * 4 ] ^ tempa[0];
|
||||
RoundKey[(i * 4) + 1] = RoundKey[(i - Nk) * (4 + 1)] ^ tempa[1];
|
||||
RoundKey[(i * 4) + 2] = RoundKey[(i - Nk) * (4 + 2)] ^ tempa[2];
|
||||
RoundKey[(i * 4) + 3] = RoundKey[(i - Nk) * (4 + 3)] ^ tempa[3];
|
||||
RoundKey[i * 4] = RoundKey[(i - Nk) * 4] ^ tempa[0];
|
||||
RoundKey[i * 4 + 1] = RoundKey[(i - Nk) * 4 + 1] ^ tempa[1];
|
||||
RoundKey[i * 4 + 2] = RoundKey[(i - Nk) * 4 + 2] ^ tempa[2];
|
||||
RoundKey[i * 4 + 3] = RoundKey[(i - Nk) * 4 + 3] ^ tempa[3];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue