From 45e73382512cbf33c21a19fb1ea1a928c64bfe43 Mon Sep 17 00:00:00 2001 From: kokke Date: Tue, 3 Jun 2014 00:22:35 +0200 Subject: Update aes.c --- aes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aes.c b/aes.c index cca2049..edff203 100644 --- a/aes.c +++ b/aes.c @@ -129,7 +129,7 @@ static void KeyExpansion() // The first round key is the key itself. for(i = 0; i < Nk; ++i) { - RoundKey[ i * 4 ] = Key[ i * 4 ]; + RoundKey[(i * 4) + 0] = Key[(i * 4) + 0]; RoundKey[(i * 4) + 1] = Key[(i * 4) + 1]; RoundKey[(i * 4) + 2] = Key[(i * 4) + 2]; RoundKey[(i * 4) + 3] = Key[(i * 4) + 3]; @@ -179,7 +179,7 @@ static void KeyExpansion() tempa[3] = getSBoxValue(tempa[3]); } } - RoundKey[i * 4] = RoundKey[(i - Nk) * 4] ^ tempa[0]; + RoundKey[i * 4 + 0] = RoundKey[(i - Nk) * 4 + 0] ^ 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]; -- cgit v1.2.3