From 6e4dee36a811fcb72a8e1ab2d439aa284481c588 Mon Sep 17 00:00:00 2001 From: fduncanh Date: Mon, 11 Oct 2021 04:49:24 -0400 Subject: [PATCH] whitespace cleanup --- lib/crypto.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/crypto.c b/lib/crypto.c index 4752e0e..c6cc109 100644 --- a/lib/crypto.c +++ b/lib/crypto.c @@ -122,8 +122,6 @@ aes_ctx_t *aes_ctr_decrypt_init(const uint8_t *key, const uint8_t *iv) { return aes_init(key, iv, EVP_aes_128_ctr(), AES_DECRYPT); } - - void aes_ctr_encrypt(aes_ctx_t *ctx, const uint8_t *in, uint8_t *out, int len) { aes_encrypt(ctx, in, out, len); ctx->block_offset = (ctx->block_offset + len) % AES_128_BLOCK_SIZE;