From 6018b3f469f06e606f1b398b1ad2c6911f1dd2fa Mon Sep 17 00:00:00 2001 From: kokke Date: Tue, 29 May 2018 13:41:59 +0200 Subject: Update aes.h --- aes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aes.h b/aes.h index dd16622..1daab47 100644 --- a/aes.h +++ b/aes.h @@ -58,8 +58,8 @@ void AES_ctx_set_iv(struct AES_ctx* ctx, const uint8_t* iv); // buffer size is exactly AES_BLOCKLEN bytes; // you need only AES_init_ctx as IV is not used in ECB // NB: ECB is considered insecure for most uses -void AES_ECB_encrypt(struct AES_ctx* ctx, const uint8_t* buf); -void AES_ECB_decrypt(struct AES_ctx* ctx, const uint8_t* buf); +void AES_ECB_encrypt(struct AES_ctx* ctx, uint8_t* buf); +void AES_ECB_decrypt(struct AES_ctx* ctx, uint8_t* buf); #endif // #if defined(ECB) && (ECB == !) -- cgit v1.2.3