Merge pull request #157 from dmitrystu/optimized-loop

loop optimization
This commit is contained in:
kokke 2020-03-07 02:51:39 +01:00 committed by GitHub
commit 1933872bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
aes.c
View File

@ -416,19 +416,19 @@ static void Cipher(state_t* state, const uint8_t* RoundKey)
// There will be Nr rounds.
// The first Nr-1 rounds are identical.
// These Nr-1 rounds are executed in the loop below.
for (round = 1; round < Nr; ++round)
// These Nr rounds are executed in the loop below.
// Last one without MixColumns()
for (round = 1; ; ++round)
{
SubBytes(state);
ShiftRows(state);
if (round == Nr) {
break;
}
MixColumns(state);
AddRoundKey(round, state, RoundKey);
}
// The last round is given below.
// The MixColumns function is not here in the last round.
SubBytes(state);
ShiftRows(state);
// Add round key to last round
AddRoundKey(Nr, state, RoundKey);
}
@ -442,20 +442,19 @@ static void InvCipher(state_t* state, const uint8_t* RoundKey)
// There will be Nr rounds.
// The first Nr-1 rounds are identical.
// These Nr-1 rounds are executed in the loop below.
for (round = (Nr - 1); round > 0; --round)
// These Nr rounds are executed in the loop below.
// Last one without InvMixColumn()
for (round = (Nr - 1); ; --round)
{
InvShiftRows(state);
InvSubBytes(state);
AddRoundKey(round, state, RoundKey);
if (round == 0) {
break;
}
InvMixColumns(state);
}
// The last round is given below.
// The MixColumns function is not here in the last round.
InvShiftRows(state);
InvSubBytes(state);
AddRoundKey(0, state, RoundKey);
}
#endif // #if (defined(CBC) && CBC == 1) || (defined(ECB) && ECB == 1)