From 20480b1d16f312c9f79fecbf8b73a494efa43b91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Wed, 9 Feb 2022 19:57:57 +0100 Subject: Fix for definition of _gcm_hash. --- gcm-internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcm-internal.h b/gcm-internal.h index a2f6ded3..39750057 100644 --- a/gcm-internal.h +++ b/gcm-internal.h @@ -43,11 +43,11 @@ /* Arrange so that _gcm_hash is an alias for the right implementation. */ -#if HAVE_NATIVE_gcm_hash +#if HAVE_NATIVE_gcm_hash || HAVE_NATIVE_fat_gcm_hash # define _gcm_hash _nettle_gcm_hash #elif GCM_TABLE_BITS == 8 && HAVE_NATIVE_gcm_hash8 # define _gcm_hash _nettle_gcm_hash8 -#elif !HAVE_NATIVE_fat_gcm_hash +#else # define _gcm_hash _nettle_gcm_hash_c #endif -- cgit v1.2.1