mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-01-19 22:39:31 +08:00
9 lines
156 B
C
Executable File
9 lines
156 B
C
Executable File
#ifndef _MD5_H_
|
|
#define _MD5_H_
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
void md5(const uint8_t *initial_msg, size_t initial_len, uint8_t *digest);
|
|
|
|
#endif
|