diff options
author | Stoian Ivanov <s.ivanov@teracomm.bg> | 2017-12-05 13:54:55 +0100 |
---|---|---|
committer | Stoian Ivanov <s.ivanov@teracomm.bg> | 2017-12-05 13:54:55 +0100 |
commit | c2f84e4f4c5d935beeecb6495df3ea205e65efcf (patch) | |
tree | f0d7f169ec1ee1ab2266e0a13bc4714ba116cb2b /README.md | |
parent | inplace api and test, Makefile update (diff) | |
parent | Update README.md (diff) | |
download | tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.tar tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.tar.gz tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.tar.bz2 tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.tar.lz tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.tar.xz tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.tar.zst tiny-AES-c-c2f84e4f4c5d935beeecb6495df3ea205e65efcf.zip |
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ void AES_CTR_xcrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, con 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. +There is no built-in error checking or protection from out-of-bounds memory access errors as a result of malicious input. The module uses less than 200 bytes of RAM and 1-2K ROM when compiled for ARM, but YMMV depending on which modes are enabled. |