summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2017-07-08 02:04:39 +0200
committerGitHub <noreply@github.com>2017-07-08 02:04:39 +0200
commit9108bec11061b8669d0ade1127258897ff650399 (patch)
tree0f5d4f3fe190b3ce860a1d04c7bd7c374937a5fe
parentUpdate README.md (diff)
downloadtiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.tar
tiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.tar.gz
tiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.tar.bz2
tiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.tar.lz
tiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.tar.xz
tiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.tar.zst
tiny-AES-c-9108bec11061b8669d0ade1127258897ff650399.zip
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 527c301..360488b 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ You can choose to use the standard 128b key or 192/256b by defining the symbols
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.
-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.
+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 (or 192/256).
The module uses around 200 bytes of RAM and 2.5K ROM when compiled for ARM (~2K for Thumb but YMMV).