summaryrefslogtreecommitdiff
path: root/crypto_aead/lilliputaei128v1/ref/tweakey.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto_aead/lilliputaei128v1/ref/tweakey.h')
-rw-r--r--crypto_aead/lilliputaei128v1/ref/tweakey.h5
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(