blob: b3735788c52c3a3e93e6f324232adff586fb331b (
plain) (
tree)
|
|
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef _MD5CALC_H_
#define _MD5CALC_H_
void MD5_String(const char * string, char * output);
void MD5_String2binary(const char * string, char * output);
#endif
|