gost.h
来自「300种常用加解密算法的源码C++实现。」· C头文件 代码 · 共 52 行
H
52 行
#ifndef CRYPTOPP_GOST_H
#define CRYPTOPP_GOST_H
#include "cryptlib.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
class GOST : public BlockTransformation
{
public:
GOST(const byte *userKey, CipherDir);
enum {KEYLENGTH=32, BLOCKSIZE=8};
unsigned int BlockSize() const {return BLOCKSIZE;}
protected:
static void PrecalculateSTable();
static const byte sBox[8][16];
static bool sTableCalculated;
static word32 sTable[4][256];
SecBlock<word32> key;
};
class GOSTEncryption : public GOST
{
public:
GOSTEncryption(const byte * userKey)
: GOST (userKey, ENCRYPTION) {}
void ProcessBlock(const byte *inBlock, byte * outBlock) const;
void ProcessBlock(byte * inoutBlock) const
{GOSTEncryption::ProcessBlock(inoutBlock, inoutBlock);}
};
class GOSTDecryption : public GOST
{
public:
GOSTDecryption(const byte * userKey)
: GOST (userKey, DECRYPTION) {}
void ProcessBlock(const byte *inBlock, byte * outBlock) const;
void ProcessBlock(byte * inoutBlock) const
{GOSTDecryption::ProcessBlock(inoutBlock, inoutBlock);}
};
NAMESPACE_END
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?