OSDN Git Service

First version
[st-ro/stro.git] / src / common / md5calc.h
1 #ifndef _MD5CALC_H_
2 #define _MD5CALC_H_
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 void MD5_String(const char * string, char * output);
9 void MD5_Binary(const char * string, unsigned char * output);
10 void MD5_Salt(unsigned int len, char * output);
11
12 #ifdef __cplusplus
13 }
14 #endif
15
16 #endif /* _MD5CALC_H_ */