summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2018-12-03 10:27:52 +0100
committerGitHub <noreply@github.com>2018-12-03 10:27:52 +0100
commit0677e48a4980cc3695bc0f4dab89bad8708d16ea (patch)
treeb36fe7b3f91daa8b5d2acca2ecfc8259bdf1804a
parentUpdate aes.c (diff)
downloadtiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.tar
tiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.tar.gz
tiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.tar.bz2
tiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.tar.lz
tiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.tar.xz
tiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.tar.zst
tiny-AES-c-0677e48a4980cc3695bc0f4dab89bad8708d16ea.zip
-rw-r--r--aes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/aes.c b/aes.c
index b54341c..c79a618 100644
--- a/aes.c
+++ b/aes.c
@@ -182,11 +182,11 @@ static void KeyExpansion(uint8_t* RoundKey, const uint8_t* Key)
// Function RotWord()
{
- uint8_t tmpu8 = tempa[0];
+ const uint8_t u8tmp = tempa[0];
tempa[0] = tempa[1];
tempa[1] = tempa[2];
tempa[2] = tempa[3];
- tempa[3] = tmpu8;
+ tempa[3] = u8tmp;
}
// SubWord() is a function that takes a four-byte input word and