From d14739644394986cb584acb45ed9b214dff1c501 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Tue, 27 Nov 2018 08:58:46 +0100 Subject: Mise en commun du code TBC et ΘCB3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Il ne devrait pas varier selon les paramètres AFAICT. --- crypto_aead/lilliputaei128v1/ref/cipher.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 crypto_aead/lilliputaei128v1/ref/cipher.h (limited to 'crypto_aead/lilliputaei128v1/ref/cipher.h') diff --git a/crypto_aead/lilliputaei128v1/ref/cipher.h b/crypto_aead/lilliputaei128v1/ref/cipher.h deleted file mode 100644 index 06dfde5..0000000 --- a/crypto_aead/lilliputaei128v1/ref/cipher.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef CIPHER_H -#define CIPHER_H - -#include - -#include "parameters.h" - - -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] -); - -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] -); - -#endif /* CIPHER_H */ -- cgit v1.2.3