summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2017-12-01 01:07:28 +0100
committerGitHub <noreply@github.com>2017-12-01 01:07:28 +0100
commit4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb (patch)
tree31e73966bf2eb7097c11220798f2a6aea6fc3df7
parentUpdate README.md (diff)
downloadtiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.tar
tiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.tar.gz
tiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.tar.bz2
tiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.tar.lz
tiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.tar.xz
tiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.tar.zst
tiny-AES-c-4bd78e1fc3c1597902a662c6cd95d5c29ec4d2bb.zip
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1951c1d..2649912 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ void AES_CTR_xcrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, con
```
-You can choose to use one or both of the modes-of-operation, by defining the symbols CBC and ECB. See the header file for clarification.
+You can choose to use one or both of the modes-of-operation, by defining the symbols CBC, CTR or ECB. See the header file for clarification.
There is no built-in error checking or protection from out-of-bounds memory access errors as a result of malicious input. The two functions AES_ECB_xxcrypt() do most of the work, and they expect inputs of 128 bit length.