diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-11-27 08:07:38 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-11-27 08:10:01 +0100 |
| commit | 0ba0dda345c2280ebebe67ecaaa6179330b5cb01 (patch) | |
| tree | 6a2854a496b80c4c66307f6f168a1dd07f297052 /crypto_aead/lilliputaei128v1/ref/tweakey.h | |
| parent | 4a5daafd4292d907e15291204aaffd29e6f6bbc2 (diff) | |
| download | lilliput-ae-implem-0ba0dda345c2280ebebe67ecaaa6179330b5cb01.tar.xz | |
Suppression du code de debug
Avec debug.h, il devrait être facile d'ajouter des traces en cas de
besoin.
Diffstat (limited to 'crypto_aead/lilliputaei128v1/ref/tweakey.h')
| -rw-r--r-- | crypto_aead/lilliputaei128v1/ref/tweakey.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crypto_aead/lilliputaei128v1/ref/tweakey.h b/crypto_aead/lilliputaei128v1/ref/tweakey.h index 92debf4..0642724 100644 --- a/crypto_aead/lilliputaei128v1/ref/tweakey.h +++ b/crypto_aead/lilliputaei128v1/ref/tweakey.h @@ -1,7 +1,6 @@ #ifndef TWEAKEY_H #define TWEAKEY_H -#include <stdio.h> /* debug */ #include <stdint.h> #include "parameters.h" @@ -9,7 +8,6 @@ struct tweakey_state { - FILE* debug; uint8_t TK[TWEAKEY_BYTES]; }; @@ -19,8 +17,7 @@ typedef struct tweakey_state tweakey_state; void tweakey_state_init( tweakey_state *TK, const uint8_t key[KEY_BYTES], - const uint8_t tweak[TWEAK_BYTES], - FILE* debug + const uint8_t tweak[TWEAK_BYTES] ); void tweakey_state_extract( |
