2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* MD5 hash implementation and interface functions
|
2009-08-16 13:06:00 +02:00
|
|
|
* Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MD5_H
|
|
|
|
#define MD5_H
|
|
|
|
|
|
|
|
#define MD5_MAC_LEN 16
|
|
|
|
|
2009-08-16 13:06:00 +02:00
|
|
|
int hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem,
|
|
|
|
const u8 *addr[], const size_t *len, u8 *mac);
|
|
|
|
int hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len,
|
|
|
|
u8 *mac);
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* MD5_H */
|