]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Typo fix.
authorNiels Möller <nisse@lysator.liu.se>
Sat, 5 Feb 2011 22:54:43 +0000 (23:54 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Sat, 5 Feb 2011 22:54:43 +0000 (23:54 +0100)
Rev: nettle/gcm.h:1.3

gcm.h

diff --git a/gcm.h b/gcm.h
index 3f5ae96708de20557adb2d01adb85e7a67e431e4..89dc112807e795b293557489b4cd4073fc410a2f 100644 (file)
--- 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 */