summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2017-12-01 01:55:21 +0100
committerGitHub <noreply@github.com>2017-12-01 01:55:21 +0100
commitf40c80797dba63666aa2a8cdfc2370ccb91ddba2 (patch)
treed856b0a4e679b7e4f77969b494713c4c82270790
parentUpdate aes.c (diff)
downloadtiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.tar
tiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.tar.gz
tiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.tar.bz2
tiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.tar.lz
tiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.tar.xz
tiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.tar.zst
tiny-AES-c-f40c80797dba63666aa2a8cdfc2370ccb91ddba2.zip
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d5ce1ad..781b4de 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 any of the modes-of-operations, by defining the symbols CBC, CTR or ECB. See the header file for clarification.
+You can choose to use any or all of the modes-of-operations, 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.