summaryrefslogtreecommitdiff
path: root/src/common/md5calc.h
blob: 4a112a660e432ab845077743f908b8a8a2be84ed (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef _MD5CALC_H_
#define _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 /* _MD5CALC_H_ */