summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2021-01-08 21:48:00 +0100
committerGitHub <noreply@github.com>2021-01-08 21:48:00 +0100
commitcd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261 (patch)
tree7cebd8ac39a045b8209d62f3f9695b6b2f347e22
parentUpdate README.md (diff)
downloadtiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.tar
tiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.tar.gz
tiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.tar.bz2
tiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.tar.lz
tiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.tar.xz
tiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.tar.zst
tiny-AES-c-cd58bb2d57a7f1a8c38655e6e96d5cb2dc08a261.zip
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6cedcfc..8a9a226 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ Important notes:
* ECB mode is considered unsafe for most uses and is not implemented in streaming mode. If you need this mode, call the function for every block of 16 bytes you need encrypted. See [wikipedia's article on ECB](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Electronic_Codebook_(ECB)) for more details.
* This library is designed for small code size and simplicity, intended for cases where small binary size, low memory footprint and portability is more important than high performance. If speed is a concern, you can try more complex libraries, e.g. [Mbed TLS](https://tls.mbed.org/), [OpenSSL](https://www.openssl.org/) etc.
-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.
+You can choose to use any or all of the modes-of-operations, by defining the symbols CBC, CTR or ECB in [`aes.h`](https://github.com/kokke/tiny-AES-c/blob/master/aes.h) (read the comments 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)