diff options
author | kokke <spam@rowdy.dk> | 2017-12-01 18:32:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 18:32:28 +0100 |
commit | 9f140e440fec736ea4e962388ef8ded2730489f4 (patch) | |
tree | 3c9547c269c80f273eee39747d420c56f2b34bd2 /README.md | |
parent | Update README.md (diff) | |
download | tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.tar tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.tar.gz tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.tar.bz2 tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.tar.lz tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.tar.xz tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.tar.zst tiny-AES-c-9f140e440fec736ea4e962388ef8ded2730489f4.zip |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ ### Tiny AES in C -This is a small and portable implementation of the AES ECB, CTR and CBC encryption algorithms written in C. +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`. |