diff options
author | kokke <spam@rowdy.dk> | 2017-12-01 13:02:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 13:02:08 +0100 |
commit | b976511e25a0f241cdff4be8483dbe88e0b141f5 (patch) | |
tree | 14283956ee63a3f6faed4a25812785944d32b727 | |
parent | Update aes.c (diff) | |
download | tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.tar tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.tar.gz tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.tar.bz2 tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.tar.lz tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.tar.xz tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.tar.zst tiny-AES-c-b976511e25a0f241cdff4be8483dbe88e0b141f5.zip |
-rw-r--r-- | aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -65,7 +65,7 @@ NOTE: String length must be evenly divisible by 16byte (str_len % 16 == 0) // jcallan@github points out that declaring Multiply as a function // reduces code size considerably with the Keil ARM compiler. -// See this link for more information: https://github.com/kokke/tiny-AES128-C/pull/3 +// See this link for more information: https://github.com/kokke/tiny-AES-C/pull/3 #ifndef MULTIPLY_AS_A_FUNCTION #define MULTIPLY_AS_A_FUNCTION 0 #endif @@ -135,7 +135,7 @@ static const uint8_t Rcon[11] = { 0x8d, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 }; /* - * Jordan Goulder points out in PR #12 (https://github.com/kokke/tiny-AES128-C/pull/12), + * Jordan Goulder points out in PR #12 (https://github.com/kokke/tiny-AES-C/pull/12), * that you can remove most of the elements in the Rcon array, because they are unused. * * From Wikipedia's article on the Rijndael key schedule @ https://en.wikipedia.org/wiki/Rijndael_key_schedule#Rcon |