code_app/modules/base/HGMd5.h

16 lines
343 B
C
Raw Normal View History

2022-05-03 10:25:52 +00:00
#ifndef __HGMD5_H__
#define __HGMD5_H__
#include "HGDef.h"
#include "HGBaseErr.h"
/* 生成MD5值
* :
* 1) data: in,
* 2) size: in,
* 3) md5: out, md5值, 16
* :
*/
HGEXPORT HGResult HGAPI HGBase_MakeMd5(const HGByte* data, HGUInt size, HGByte* md5);
#endif /* __HGMD5_H__ */