blob: f06a01f4d11663861f4433ed1eaa5c351110d8cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef COMMON_MD5CALC_H
#define COMMON_MD5CALC_H
#ifdef HERCULES_CORE
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 // HERCULES_CORE
#endif /* COMMON_MD5CALC_H */
|