From 7a3de7ed01df452c7798dc1936c0d089423989db Mon Sep 17 00:00:00 2001 From: kokke Date: Mon, 30 Mar 2020 21:47:48 +0200 Subject: removing commented-out call to printf... --- aes.c | 1 - 1 file changed, 1 deletion(-) diff --git a/aes.c b/aes.c index 32b7041..eaf2b69 100644 --- a/aes.c +++ b/aes.c @@ -505,7 +505,6 @@ void AES_CBC_encrypt_buffer(struct AES_ctx *ctx, uint8_t* buf, uint32_t length) Cipher((state_t*)buf, ctx->RoundKey); Iv = buf; buf += AES_BLOCKLEN; - //printf("Step %d - %d", i/16, i); } /* store Iv in ctx for next call */ memcpy(ctx->Iv, Iv, AES_BLOCKLEN); -- cgit v1.2.3