From 0a8bafcd8d4cdb5c107a1c2a0ea94518c99ab49b Mon Sep 17 00:00:00 2001 From: kokke Date: Fri, 1 Dec 2017 01:00:47 +0100 Subject: adding CTR-mode --- aes.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/aes.h b/aes.h index 8dd2d3b..943dd8b 100644 --- a/aes.h +++ b/aes.h @@ -18,6 +18,11 @@ #define ECB 1 #endif +#ifndef CTR + #define CTR 1 +#endif + + #define AES128 1 //#define AES192 1 //#define AES256 1 @@ -38,4 +43,12 @@ void AES_CBC_decrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, co #endif // #if defined(CBC) && (CBC == 1) +#if defined(CTR) && (CTR == 1) + +/* Symmetrical operation: same function for encrypting as for decrypting */ +void AES_CTR_xcrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, const uint8_t* key, const uint8_t* iv); + +#endif // #if defined(CTR) && (CTR == 1) + + #endif //_AES_H_ -- cgit v1.2.3