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
Marcus Hoffmann
nettle
Commits
4a1f5240
Commit
4a1f5240
authored
Aug 30, 2011
by
Niels Möller
Browse files
Declare hmac-ripemd160 functions.
Rev: nettle/hmac.h:1.5
parent
6c8fd4de
Changes
1
Hide whitespace changes
Inline
Side-by-side
hmac.h
View file @
4a1f5240
...
...
@@ -103,6 +103,22 @@ hmac_md5_digest(struct hmac_md5_ctx *ctx,
unsigned
length
,
uint8_t
*
digest
);
/* hmac-ripemd160 */
struct
hmac_ripemd160_ctx
HMAC_CTX
(
struct
ripemd160_ctx
);
void
hmac_ripemd160_set_key
(
struct
hmac_ripemd160_ctx
*
ctx
,
unsigned
key_length
,
const
uint8_t
*
key
);
void
hmac_ripemd160_update
(
struct
hmac_ripemd160_ctx
*
ctx
,
unsigned
length
,
const
uint8_t
*
data
);
void
hmac_ripemd160_digest
(
struct
hmac_ripemd160_ctx
*
ctx
,
unsigned
length
,
uint8_t
*
digest
);
/* hmac-sha1 */
struct
hmac_sha1_ctx
HMAC_CTX
(
struct
sha1_ctx
);
...
...
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