Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Brian Smith
nettle
Commits
17f90be1
Commit
17f90be1
authored
Feb 10, 2011
by
Niels Möller
Browse files
(union gcm_block): Use correct length for w array.
Rev: nettle/ChangeLog:1.146 Rev: nettle/gcm.h:1.9
parent
bd0d97c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
17f90be1
2011-02-10 Niels Mller <nisse@lysator.liu.se>
* gcm.h (union gcm_block): Use correct length for w array.
* testsuite/gcm-test.c (test_main): Added the rest of the
testcases from the spec.
...
...
gcm.h
View file @
17f90be1
...
...
@@ -64,7 +64,7 @@ extern "C" {
union
gcm_block
{
uint8_t
b
[
GCM_BLOCK_SIZE
];
unsigned
long
w
[
1
];
unsigned
long
w
[
GCM_BLOCK_SIZE
/
sizeof
(
unsigned
long
)
];
};
/* Hashing subkey */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment