mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-22 05:21:52 +03:00
removing commented-out call to printf...
This commit is contained in:
parent
218dbd8b7a
commit
7a3de7ed01
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);
|
||||||
|
Loading…
Reference in New Issue
Block a user