You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/iAlg/iAlgEnc/zxHashMD5.h

17 lines
193 B
C++

#pragma once
#include "zxAes.h"
// Hash MD5 算法
class I_ALGENC_EXPORT zxHashMD5
{
public:
zxHashMD5();
~zxHashMD5();
public:
static QString hashStr(const QString& s);
};