From 617634e6565c81808d6fb2fed38f59f582caa965 Mon Sep 17 00:00:00 2001 From: Brian Murray Date: Thu, 19 May 2016 19:02:53 -0700 Subject: [PATCH] cmac.c whitespace cleanup --- library/cmac.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/library/cmac.c b/library/cmac.c index 4c25a67d0..09a705d65 100644 --- a/library/cmac.c +++ b/library/cmac.c @@ -59,7 +59,6 @@ void mbedtls_cmac_init( mbedtls_cmac_context *ctx ) memset( ctx, 0, sizeof( mbedtls_cmac_context ) ); } - /* * Multiplication by u in the Galois field of GF(2^n) * @@ -267,13 +266,11 @@ int mbedtls_cmac_generate( mbedtls_cmac_context *ctx, unsigned char *tag, size_t tag_len ) { - unsigned char *state; unsigned char *M_last; int n, j, ret, needs_padding; size_t olen, block_size, i; - ret = 0; block_size = ctx->cipher_ctx.cipher_info->block_size;