9 lines
156 B
C
Raw Normal View History

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