1
0
mirror of https://github.com/fumiama/simple-crypto.git synced 2026-06-11 14:27:48 +08:00

更改为lib

This commit is contained in:
fumiama
2021-05-29 13:58:23 +08:00
parent 5b2587f133
commit bd25ddf9f6
5 changed files with 120 additions and 63 deletions

7
simplemd5.h Normal file
View File

@@ -0,0 +1,7 @@
#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