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