diff options
author | kokke <spam@rowdy.dk> | 2017-12-29 17:00:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-29 17:00:37 +0100 |
commit | ddd84d3787185210731e51deb5d887f17f72e803 (patch) | |
tree | d6fcbb273eb189793c52284da90bde0af2030af4 | |
parent | Create aes.hpp (diff) | |
download | tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.tar tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.tar.gz tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.tar.bz2 tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.tar.lz tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.tar.xz tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.tar.zst tiny-AES-c-ddd84d3787185210731e51deb5d887f17f72e803.zip |
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -31,6 +31,8 @@ Note: 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. +C++ users should `#include` [aes.hpp](https://github.com/kokke/tiny-AES-c/blob/master/aes.hpp) instead of [aes.h](https://github.com/kokke/tiny-AES-c/blob/master/aes.h) + 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. |