* Fixes #3385. * Updated the header guard names to C++ standards. Thanks to @elfring's suggestion!
12 lines
347 B
C++
12 lines
347 B
C++
// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef MD5CALC_HPP
|
|
#define MD5CALC_HPP
|
|
|
|
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_HPP */
|