summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2020-02-11 20:54:21 +0100
committerGitHub <noreply@github.com>2020-02-11 20:54:21 +0100
commit3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9 (patch)
tree226555f8765fc2fb3ea2ac340d9511e0467350ee
parentMerge pull request #145 from acortelyou/arduino-lib-props (diff)
downloadtiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.tar
tiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.tar.gz
tiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.tar.bz2
tiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.tar.lz
tiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.tar.xz
tiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.tar.zst
tiny-AES-c-3fe133ffa32606b0d0d81e0ba1d8bacb392eb7e9.zip
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e32e25e..6986064 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
This is a small and portable implementation of the AES [ECB](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Electronic_Codebook_.28ECB.29), [CTR](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Counter_.28CTR.29) and [CBC](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher_Block_Chaining_.28CBC.29) encryption algorithms written in C.
-You can override the default key-size of 128 bit with 192 or 256 bit by defining the symbols AES192 or AES256 in `aes.h`.
+You can override the default key-size of 128 bit with 192 or 256 bit by defining the symbols AES192 or AES256 in [`aes.h`](https://github.com/kokke/tiny-AES-c/blob/master/aes.h).
The API is very simple and looks like this (I am using C99 `<stdint.h>`-style annotated types):