diff options
author | kokke <spam@rowdy.dk> | 2017-12-01 20:05:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 20:05:49 +0100 |
commit | d234d31d18459c7efbec29acbd2f8a2e1e23b80f (patch) | |
tree | 9cf46c067f920bc3fbdfa66d0f44d444171843bb | |
parent | wiki-links to supported block-cipher mode of operation. (diff) | |
download | tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.tar tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.tar.gz tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.tar.bz2 tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.tar.lz tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.tar.xz tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.tar.zst tiny-AES-c-d234d31d18459c7efbec29acbd2f8a2e1e23b80f.zip |
-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](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Electronic_Codebook_.28ECB.29), [CTR](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Counter_.28CTR.29) and [CBC](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher_Block_Chaining_.28CBC.29) encryption algorithms written in C. -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`. +You can override the default key-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): |