udp2raw/lib/md5.h

9 lines
170 B
C
Raw Normal View History

#ifndef UDP2RAW_MD5_H_
#define UDP2RAW_MD5_H_
2017-07-24 17:55:30 +00:00
#include <stdint.h>
2017-08-19 09:31:04 +00:00
#include <stddef.h>
2017-07-24 17:55:30 +00:00
void md5(const uint8_t *initial_msg, size_t initial_len, uint8_t *digest);
#endif