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.
|
#pragma once
|
|
|
|
#include "zxAes.h"
|
|
|
|
// Hash MD5 算法
|
|
class I_ALGENC_EXPORT zxHashMD5
|
|
{
|
|
public:
|
|
|
|
zxHashMD5();
|
|
~zxHashMD5();
|
|
|
|
public:
|
|
|
|
static QString hashStr(const QString& s);
|
|
};
|