diff options
author | kokke <spam@rowdy.dk> | 2017-12-01 12:10:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 12:10:29 +0100 |
commit | fbaaf6199cabcd29cbadfbb597739e49bb02776a (patch) | |
tree | 8d18eedbe278f568f860824fa8545d5eaacc0e3e | |
parent | Update aes.h (diff) | |
download | tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.tar tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.tar.gz tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.tar.bz2 tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.tar.lz tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.tar.xz tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.tar.zst tiny-AES-c-fbaaf6199cabcd29cbadfbb597739e49bb02776a.zip |
-rw-r--r-- | aes.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,8 @@ // #define the macros below to 1/0 to enable/disable the mode of operation. // // CBC enables AES encryption in CBC-mode of operation. -// ECB enables the basic ECB 16-byte block algorithm. Both can be enabled simultaneously. +// CTR enables encryption in counter-mode. +// ECB enables the basic ECB 16-byte block algorithm. All can be enabled simultaneously. // The #ifndef-guard allows it to be configured before #include'ing or at compile time. #ifndef CBC |