?? ghash.h
字號:
/*
---------------------------------------------------------------------------
Copyright (c) 2003, Dominik Reichl <dominik.reichl@t-online.de>, Germany.
All rights reserved.
Distributed under the terms of the GNU General Public License v2.
This software is provided 'as is' with no explicit or implied warranties
in respect of its properties, including, but not limited to, correctness
and/or fitness for purpose.
---------------------------------------------------------------------------
*/
#ifndef ___GHASH_H___
#define ___GHASH_H___
class CGHash
{
public:
CGHash();
virtual ~CGHash();
void Init();
void Update(const unsigned char *pData, unsigned long uSize);
void FinalToStr(char *strOutput, int nHash);
private:
unsigned long m_hash3;
unsigned long m_hash5;
};
#endif // ___GHASH_H___
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -