?? blowfish.h
字號:
#ifndef CRYPTOPP_BLOWFISH_H
#define CRYPTOPP_BLOWFISH_H
#include "cryptlib.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
class Blowfish : public BlockTransformation
{
public:
Blowfish(const byte *key_string, unsigned int keylength, CipherDir direction);
void ProcessBlock(byte * inoutBlock) const
{Blowfish::ProcessBlock(inoutBlock, inoutBlock);}
void ProcessBlock(const byte *inBlock, byte *outBlock) const;
// value of KEYLENGTH is default only
enum {KEYLENGTH=16, BLOCKSIZE=8, ROUNDS=16};
unsigned int BlockSize() const {return BLOCKSIZE;}
private:
void crypt_block(const word32 in[2], word32 out[2]) const;
static const word32 p_init[ROUNDS+2];
static const word32 s_init[4*256];
SecBlock<word32> pbox, sbox;
};
class BlowfishEncryption : public Blowfish
{
public:
BlowfishEncryption(const byte *key_string, unsigned int keylength=KEYLENGTH)
: Blowfish(key_string, keylength, ENCRYPTION) {}
};
class BlowfishDecryption : public Blowfish
{
public:
BlowfishDecryption(const byte *key_string, unsigned int keylength=KEYLENGTH)
: Blowfish(key_string, keylength, DECRYPTION) {}
};
NAMESPACE_END
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -