Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Nettle
nettle
Commits
89808f54
Commit
89808f54
authored
Sep 19, 2012
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PBKDF2 macro: Removed improper const.
parent
15a4d92d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
pbkdf2.h
pbkdf2.h
+1
-1
No files found.
pbkdf2.h
View file @
89808f54
...
...
@@ -46,7 +46,7 @@ pbkdf2 (void *mac_ctx, unsigned digest_size,
#define PBKDF2(ctx, digest_size, update, digest, \
length, dst, iterations, salt_length, salt) \
(0 ? ((update)((ctx), 0, (
const
uint8_t *) 0), \
(0 ? ((update)((ctx), 0, (uint8_t *) 0),
\
(digest)((ctx), 0, (uint8_t *) 0)) \
: pbkdf2 ((ctx), (digest_size), \
(nettle_hash_update_func *)(update), \
...
...
Write
Preview
Markdown
is supported
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