From 218dbd8b7a76ea9f1e3b7051a4d6326b7fb4c942 Mon Sep 17 00:00:00 2001 From: kokke Date: Mon, 30 Mar 2020 21:43:47 +0200 Subject: Update aes.h --- aes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aes.h b/aes.h index 87f1471..0d3b2e0 100644 --- a/aes.h +++ b/aes.h @@ -27,7 +27,7 @@ //#define AES192 1 //#define AES256 1 -#define AES_BLOCKLEN 16 //Block length in bytes AES is 128b block only +#define AES_BLOCKLEN 16 // Block length in bytes - AES is 128b block only #if defined(AES256) && (AES256 == 1) #define AES_KEYLEN 32 @@ -87,4 +87,4 @@ void AES_CTR_xcrypt_buffer(struct AES_ctx* ctx, uint8_t* buf, uint32_t length); #endif // #if defined(CTR) && (CTR == 1) -#endif //_AES_H_ +#endif // _AES_H_ -- cgit v1.2.3