From 6dd517d77c7e6f25e4eb0a4feaf76f98dd6a2b32 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 11 Oct 2015 13:12:19 +0200 Subject: [PATCH] crypto_aead_aes256gcm_aesni_state doesn't exist any more Use the non-implementation specific type crypto_aead_aes256gcm_state --- lfd_encrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfd_encrypt.c b/lfd_encrypt.c index e7af884..abdc5bc 100644 --- a/lfd_encrypt.c +++ b/lfd_encrypt.c @@ -26,7 +26,7 @@ #define SLEEP_WHEN_CLOCK_IS_OFF 10 typedef struct CryptoCtx { - crypto_aead_aes256gcm_aesni_state *state; + crypto_aead_aes256gcm_state *state; unsigned char *ciphertext; unsigned char *message; unsigned char *nonce;