blob: fc1c274f24ec83fb6e236b576ab9951f01d2b7ff (
plain) (
blame)
1
2
3
4
5
6
7
|
#ifndef _MD5CALC_H_
#define _MD5CALC_H_
void MD5_String(const char * string, char * output);
void MD5_String2binary(const char * string, char * output);
#endif /* _MD5CALC_H_ */
|