From: Niels Möller Date: Sat, 5 Feb 2011 22:54:43 +0000 (+0100) Subject: Typo fix. X-Git-Tag: nettle_2.2_release_20110711~186 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94361563d813b742672c4a775ec1a2b18d2fa821;p=thirdparty%2Fnettle.git Typo fix. Rev: nettle/gcm.h:1.3 --- diff --git a/gcm.h b/gcm.h index 3f5ae967..89dc1128 100644 --- a/gcm.h +++ b/gcm.h @@ -58,7 +58,7 @@ struct gcm_ctx { /* Hashing subkey */ uint8_t h[GCM_BLOCK_SIZE]; #if GCM_TABLE_BITS - uint8_t h[1 << GCM_TABLE_BITS][GCM_BLOCK_SIZE]; + uint8_t h_table[1 << GCM_TABLE_BITS][GCM_BLOCK_SIZE]; #endif /* Per-message state, depending on the iv */ /* Original counter block */