Skip to content
Snippets Groups Projects
Commit 94361563 authored by Niels Möller's avatar Niels Möller
Browse files

Typo fix.

Rev: nettle/gcm.h:1.3
parent 58742515
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment