📄 fnahashfunction.h
字号:
/* Copyright 2001,2002,2003 NAH6 BV
* All Rights Reserved
*
* $Header: /var/lib/cvs/secphone/ui/rng/fortuna/fnaHashFunction.h,v 1.4 2003/11/21 16:12:58 itsme Exp $
*
* This defines a generic interface to a hash function, which is implemented by
* ui\crypto\hashSHA256.cpp
*
* I should have subclassed this....
*
*/
#ifndef __FNAHASHFUNCTION_H__
#include "vectorutils.h"
#include "crypto.h"
//--------------------------------------------------------------------------
// assert(HashFunction::BLOCKSIZE == BlockCypher::KEYSIZE)
class HashFunction {
public:
HashFunction();
~HashFunction();
enum { BLOCKSIZE= 32 }; // in bytes
static ByteVector Calculate(const ByteVector& data);
void Reset();
void Add(const ByteVector& data);
ByteVector GetResult();
private:
struct crypto_sha_state m_state;
};
#define __FNAHASHFUNCTION_H__
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -