From 6768af11be020bf940b38491f83550f1dc8efb70 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Sun, 7 Jun 2020 14:40:49 +0200 Subject: [PATCH] Linux compilation fixes --- speck.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/speck.c b/speck.c index 589cd19..a15ecee 100644 --- a/speck.c +++ b/speck.c @@ -89,12 +89,6 @@ RK(B,A,k,key,21), RK(C,A,k,key,22), RK(D,A,k,key,23), RK(B,A,k,key,24), RK(C,A,k,key,25), RK(D,A,k,key,26), RK(B,A,k,key,27), \ RK(C,A,k,key,28), RK(D,A,k,key,29), RK(B,A,k,key,30), RK(C,A,k,key,31), RK(D,A,k,key,32), RK(B,A,k,key,33)) -typedef struct { - u256 rk[34]; - u64 key[34]; -} speck_context_t; - - static int speck_encrypt_xor(unsigned char *out, const unsigned char *in, u64 nonce[], speck_context_t *ctx, int numbytes) { u64 x[2], y[2];