diff options
author | kokke <spam@rowdy.dk> | 2017-07-08 03:21:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-08 03:21:42 +0200 |
commit | 24c8ab552c7b2ca17fd9a6410f9772548a4b9e42 (patch) | |
tree | fc3bf64a6e53ddad863c48412abc450d80613063 /aes.c | |
parent | Update aes.c (diff) | |
download | tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.tar tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.tar.gz tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.tar.bz2 tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.tar.lz tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.tar.xz tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.tar.zst tiny-AES-c-24c8ab552c7b2ca17fd9a6410f9772548a4b9e42.zip |
Diffstat (limited to 'aes.c')
-rw-r--r-- | aes.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,7 @@ /* -This is an implementation of the AES128 algorithm, specifically ECB and CBC mode. +This is an implementation of the AES algorithm, specifically ECB and CBC mode. +Block size can be chosen in aes.h - available choices are AES128, AES192, AES256. The implementation is verified against the test vectors in: National Institute of Standards and Technology Special Publication 800-38A 2001 ED @@ -26,6 +27,7 @@ ECB-AES128 NOTE: String length must be evenly divisible by 16byte (str_len % 16 == 0) You should pad the end of the string with zeros if this is not the case. + For AES192/256 the block size is proportionally larger. */ |