#include "includes.h"
#include "common.h"
#include "md5.h"
#include "crypto.h"
Go to the source code of this file.
Functions | |
int | hmac_md5_non_fips_allow (const u8 *key, size_t key_len, const u8 *data, size_t data_len, u8 *mac) |
int | hmac_md5_vector_non_fips_allow (const u8 *key, size_t key_len, size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) |
int hmac_md5_non_fips_allow | ( | const u8 * | key, | |
size_t | key_len, | |||
const u8 * | data, | |||
size_t | data_len, | |||
u8 * | mac | |||
) |
hmac_md5_non_fips_allow - HMAC-MD5 over data buffer (RFC 2104) : Key for HMAC operations : Length of the key in bytes : Pointers to the data area : Length of the data area : Buffer for the hash (16 bytes) Returns: 0 on success, -1 on failure
Definition at line 108 of file md5-non-fips.c.
int hmac_md5_vector_non_fips_allow | ( | const u8 * | key, | |
size_t | key_len, | |||
size_t | num_elem, | |||
const u8 * | addr[], | |||
const size_t * | len, | |||
u8 * | mac | |||
) |
hmac_md5_vector_non_fips_allow - HMAC-MD5 over data vector (RFC 2104) : Key for HMAC operations : Length of the key in bytes : Number of elements in the data vector : Pointers to the data areas : Lengths of the data blocks : Buffer for the hash (16 bytes) Returns: 0 on success, -1 on failure
Definition at line 32 of file md5-non-fips.c.