1
0
mirror of https://github.com/fumiama/simple-crypto.git synced 2026-06-07 02:30:23 +08:00
Files
simple-crypto/simplemd5.h
2021-05-29 13:58:23 +08:00

7 lines
175 B
C

#ifndef _SIMPLE_MD5_H_
#define _SIMPLE_MD5_H_
#include <stdio.h>
#include <stdint.h>
//return 128bit(16bytes) digest
uint8_t* md5(const uint8_t *data, size_t data_len);
#endif