1 #ifndef MD5_H
2 #define MD5_H
3 
4 #include <stdint.h>
5 #include <stddef.h>
6 
7 /**
8  * md5_sum - MD5 hash for a data block
9  * @addr: Pointers to the data area
10  * @len: Lengths of the data block
11  * @mac: Buffer for the hash
12  */
13 void md5_sum(const uint8_t *addr, const size_t len, uint8_t *mac);
14 
15 #endif
16