lilliput-ae-reference-implementation

Implementations of Lilliput-AE submitted to the NIST LWC standardization process
git clone https://git.kevinlegouguec.net/lilliput-ae-reference-implementation
Log | Files | Refs | README

commit e88dab71fe5ba3b2254497ab38e740db52b7b26b
parent f2f735af0c44d280c6642935d33dc43793f5a637
Author: Kévin Le Gouguec <kevin.legouguec@airbus.com>
Date:   Tue, 20 Nov 2018 11:20:36 +0100

Respect des conventions de code

TODO: trouver un linter qui détecte ce genre de bêtises…

Diffstat:
Mcrypto_aead/lilliputaei128v1/ref/tweakey.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto_aead/lilliputaei128v1/ref/tweakey.c b/crypto_aead/lilliputaei128v1/ref/tweakey.c @@ -3,7 +3,7 @@ #include "tweakey.h" -static void _dump_buffer(FILE* output, size_t len, const uint8_t buf[len], int indent) +static void _dump_buffer(FILE *output, size_t len, const uint8_t buf[len], int indent) { for (size_t line=0; line<len/8; line++) { @@ -25,7 +25,7 @@ void tweakey_state_init( tweakey_state *TK, const uint8_t key[KEY_BYTES], const uint8_t tweak[TWEAK_BYTES], - FILE* debug + FILE *debug ) { memcpy(TK->TK, tweak, TWEAK_BYTES);