diff options
author | kokke <spam@rowdy.dk> | 2017-07-10 11:46:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-10 11:46:25 +0200 |
commit | c1a58a1157cac9692e293aa6ab9126ac62e7f0d1 (patch) | |
tree | 0a3a785432e20b091129a1d9d456691426793837 /README.md | |
parent | Update README.md (diff) | |
download | tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.tar tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.tar.gz tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.tar.bz2 tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.tar.lz tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.tar.xz tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.tar.zst tiny-AES-c-c1a58a1157cac9692e293aa6ab9126ac62e7f0d1.zip |
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ This is a small and portable implementation of the AES ECB and CBC encryption algorithms written in C. -You can override the default 128bit key with a 192 or 256bit by defining the symbols AES192 or AES256 in `aes.h`. +You can override the default block-size of 128 bit with 192 or 256 bit by defining the symbols AES192 or AES256 in `aes.h`. The API is very simple and looks like this (I am using C99 `<stdint.h>`-style annotated types): |