From 89c31f0b98d9aa5df2ced6b0c71356cff9819749 Mon Sep 17 00:00:00 2001 From: Maloux1 Date: Mon, 12 May 2025 10:22:17 +0200 Subject: [PATCH] correct typo --- aes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aes.h b/aes.h index b29b668..ccee4fa 100644 --- a/aes.h +++ b/aes.h @@ -62,7 +62,7 @@ void AES_ctx_set_iv(struct AES_ctx* ctx, const uint8_t* iv); void AES_ECB_encrypt(const struct AES_ctx* ctx, uint8_t* buf); void AES_ECB_decrypt(const struct AES_ctx* ctx, uint8_t* buf); -#endif // #if defined(ECB) && (ECB == !) +#endif // #if defined(ECB) && (ECB == 1) #if defined(CBC) && (CBC == 1)