removing commented-out call to printf...
This commit is contained in:
1
aes.c
1
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);
|
Cipher((state_t*)buf, ctx->RoundKey);
|
||||||
Iv = buf;
|
Iv = buf;
|
||||||
buf += AES_BLOCKLEN;
|
buf += AES_BLOCKLEN;
|
||||||
//printf("Step %d - %d", i/16, i);
|
|
||||||
}
|
}
|
||||||
/* store Iv in ctx for next call */
|
/* store Iv in ctx for next call */
|
||||||
memcpy(ctx->Iv, Iv, AES_BLOCKLEN);
|
memcpy(ctx->Iv, Iv, AES_BLOCKLEN);
|
||||||
|
|||||||
Reference in New Issue
Block a user