blob: d0caf678711b276ce1ba2a11a7d6578b17ad74b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef _COMMON_MD5CALC_H_
#define _COMMON_MD5CALC_H_
void MD5_String(const char * string, char * output);
void MD5_Binary(const char * string, unsigned char * output);
void MD5_Salt(unsigned int len, char * output);
#endif /* _COMMON_MD5CALC_H_ */
|