mirror of
https://github.com/jie65535/DaemonService.git
synced 2024-07-27 19:04:56 +08:00
11 lines
196 B
C
11 lines
196 B
C
#ifndef __MD5_H_
|
|
#define __MD5_H_
|
|
|
|
|
|
char* MD5String( char* string ,unsigned int stringlen);
|
|
|
|
|
|
bool MD5Check( char *md5string, char* string ,unsigned int stringlen);
|
|
|
|
#endif //_MD5_H_
|