wpa_supplicant / hostapd 2.0
Functions

md5-non-fips.c File Reference

MD5 hash implementation and interface functions (non-FIPS allowed cases) More...

#include "includes.h"
#include "common.h"
#include "md5.h"
#include "crypto.h"

Functions

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 over data vector (RFC 2104)
int hmac_md5_non_fips_allow (const u8 *key, size_t key_len, const u8 *data, size_t data_len, u8 *mac)
 HMAC-MD5 over data buffer (RFC 2104)

Detailed Description

MD5 hash implementation and interface functions (non-FIPS allowed cases)

Copyright
Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>

This software may be distributed under the terms of the BSD license. See README for more details.


Function Documentation

int hmac_md5_non_fips_allow ( const u8 *  key,
size_t  key_len,
const u8 *  data,
size_t  data_len,
u8 *  mac 
)

HMAC-MD5 over data buffer (RFC 2104)

Parameters:
keyKey for HMAC operations
key_lenLength of the key in bytes
dataPointers to the data area
data_lenLength of the data area
macBuffer for the hash (16 bytes)
Returns:
0 on success, -1 on failure
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 over data vector (RFC 2104)

Parameters:
keyKey for HMAC operations
key_lenLength of the key in bytes
num_elemNumber of elements in the data vector
addrPointers to the data areas
lenLengths of the data blocks
macBuffer for the hash (16 bytes)
Returns:
0 on success, -1 on failure
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines