This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#ifndef __MD5_H__
#define __MD5_H__
#include "Kernel\Sys.h"
// MD5 散列算法
class MD5
{
public:
// 散列
static ByteArray Hash(const Buffer& data);
// 字符串散列。先取得字符串对应的字节码进行散列,然后转为HEX编码字符串
static String Hash(const String& str);
};
#endif