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
Dmitry Baryshkov
nettle
Commits
3e19f3bc
Commit
3e19f3bc
authored
Feb 09, 2011
by
Niels Möller
Browse files
* gcm-aes.c (gcm_aes_set_iv): Updated for gcm_set_iv change.
Rev: nettle/gcm-aes.c:1.2
parent
9924966a
Changes
1
Show whitespace changes
Inline
Side-by-side
gcm-aes.c
View file @
3e19f3bc
...
...
@@ -36,7 +36,7 @@ void
gcm_aes_set_iv
(
struct
gcm_aes_ctx
*
ctx
,
unsigned
length
,
const
uint8_t
*
iv
)
{
gcm_set_iv
(
&
ctx
->
gcm
,
length
,
iv
);
gcm_set_iv
(
&
ctx
->
gcm
,
&
ctx
->
key
,
length
,
iv
);
}
/* FIXME: Rename to gcm_aes_update, for consistency with other hash
...
...
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