Only define InvCipher if needed

If AES is being compiled only for AES-CTR, don't compile InvCipher since it is not used
This commit is contained in:
Roy Keene 2019-01-11 16:36:17 +00:00
parent 0677e48a49
commit c033c7c7e4

3
aes.c
View File

@ -432,6 +432,7 @@ static void Cipher(state_t* state, uint8_t* RoundKey)
AddRoundKey(Nr, state, RoundKey);
}
#if (defined(CBC) && CBC == 1) || (defined(ECB) && ECB == 1)
static void InvCipher(state_t* state,uint8_t* RoundKey)
{
uint8_t round = 0;
@ -456,7 +457,7 @@ static void InvCipher(state_t* state,uint8_t* RoundKey)
InvSubBytes(state);
AddRoundKey(0, state, RoundKey);
}
#endif // #if (defined(CBC) && CBC == 1) || (defined(ECB) && ECB == 1)
/*****************************************************************************/
/* Public functions: */