summaryrefslogtreecommitdiff
path: root/crypto_aead/lilliputaei128v1/ref/cipher.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto_aead/lilliputaei128v1/ref/cipher.h')
-rw-r--r--crypto_aead/lilliputaei128v1/ref/cipher.h7
1 files changed, 2 insertions, 5 deletions
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 <stdio.h> /* debug */
#include <stdint.h>
#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 */