diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-11-20 11:20:36 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-11-20 11:20:36 +0100 |
| commit | e88dab71fe5ba3b2254497ab38e740db52b7b26b (patch) | |
| tree | 72740e0e633edf9ffac20a661a11efe3edf9b35a | |
| parent | f2f735af0c44d280c6642935d33dc43793f5a637 (diff) | |
| download | lilliput-ae-implem-e88dab71fe5ba3b2254497ab38e740db52b7b26b.tar.xz | |
Respect des conventions de code
TODO: trouver un linter qui détecte ce genre de bêtises…
| -rw-r--r-- | crypto_aead/lilliputaei128v1/ref/tweakey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto_aead/lilliputaei128v1/ref/tweakey.c b/crypto_aead/lilliputaei128v1/ref/tweakey.c index 7cc92c3..adb6d1e 100644 --- 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); |
