mirror of https://github.com/kokke/tiny-AES-c
Update aes.c
This commit is contained in:
parent
2138696a3d
commit
24c8ab552c
4
aes.c
4
aes.c
|
@ -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.
|
||||
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue