diff options
author | kokke <spam@rowdy.dk> | 2017-12-01 01:22:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 01:22:50 +0100 |
commit | 54f5a652e5bd9a04fdd3105f6f111b83f6443198 (patch) | |
tree | ec1a8376eafcbd00b10efd2e35030ee2b7bdc13f | |
parent | Update aes.c (diff) | |
download | tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.tar tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.tar.gz tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.tar.bz2 tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.tar.lz tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.tar.xz tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.tar.zst tiny-AES-c-54f5a652e5bd9a04fdd3105f6f111b83f6443198.zip |
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ void AES_CTR_xcrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, con ``` -You can choose to use one or both of the modes-of-operation, by defining the symbols CBC, CTR or ECB. See the header file for clarification. +You can choose to use any of the modes-of-operation, 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. |