From 0ba0dda345c2280ebebe67ecaaa6179330b5cb01 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Tue, 27 Nov 2018 08:07:38 +0100 Subject: Suppression du code de debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avec debug.h, il devrait être facile d'ajouter des traces en cas de besoin. --- crypto_aead/lilliputaei128v1/ref/cipher.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'crypto_aead/lilliputaei128v1/ref/cipher.h') diff --git a/crypto_aead/lilliputaei128v1/ref/cipher.h b/crypto_aead/lilliputaei128v1/ref/cipher.h index 02a94ac..06dfde5 100644 --- a/crypto_aead/lilliputaei128v1/ref/cipher.h +++ b/crypto_aead/lilliputaei128v1/ref/cipher.h @@ -1,7 +1,6 @@ #ifndef CIPHER_H #define CIPHER_H -#include /* debug */ #include #include "parameters.h" @@ -11,16 +10,14 @@ void lilliput_tbc_encrypt( const uint8_t key[KEY_BYTES], const uint8_t tweak[TWEAK_BYTES], const uint8_t message[BLOCK_BYTES], - uint8_t ciphertext[BLOCK_BYTES], - FILE *debug + uint8_t ciphertext[BLOCK_BYTES] ); void lilliput_tbc_decrypt( const uint8_t key[KEY_BYTES], const uint8_t tweak[TWEAK_BYTES], const uint8_t ciphertext[BLOCK_BYTES], - uint8_t message[BLOCK_BYTES], - FILE *debug + uint8_t message[BLOCK_BYTES] ); #endif /* CIPHER_H */ -- cgit v1.2.3