#include <freeradius-devel/libradius.h>
Go to the source code of this file.
Functions | |
void | fr_hmac_sha1 (uint8_t digest[SHA1_DIGEST_LENGTH], uint8_t const *text, size_t text_len, uint8_t const *key, size_t key_len) |
Calculate HMAC using SHA1. More... | |
void fr_hmac_sha1 | ( | uint8_t | digest[SHA1_DIGEST_LENGTH], |
uint8_t const * | text, | ||
size_t | text_len, | ||
uint8_t const * | key, | ||
size_t | key_len | ||
) |
Calculate HMAC using SHA1.
digest | Caller digest to be filled in. |
text | Pointer to data stream. |
text_len | length of data stream. |
key | Pointer to authentication key. |
key_len | Length of authentication key. |
Definition at line 28 of file hmacsha1.c.