summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2017-12-01 12:10:29 +0100
committerGitHub <noreply@github.com>2017-12-01 12:10:29 +0100
commitfbaaf6199cabcd29cbadfbb597739e49bb02776a (patch)
tree8d18eedbe278f568f860824fa8545d5eaacc0e3e
parentUpdate aes.h (diff)
downloadtiny-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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/aes.h b/aes.h
index 351243c..e5eb4c9 100644
--- a/aes.h
+++ b/aes.h
@@ -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