md5calc.hpp 347 B

1234567891011
  1. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef MD5CALC_HPP
  4. #define MD5CALC_HPP
  5. void MD5_String(const char * string, char * output);
  6. void MD5_Binary(const char * string, unsigned char * output);
  7. void MD5_Salt(unsigned int len, char * output);
  8. #endif /* MD5CALC_HPP */