⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.h

📁 各种加密算法的源代码
💻 H
字号:
#ifndef DEFAULT_H
#define DEFAULT_H

#include "shs.h"
#include "des.h"
#include "modes.h"
#include "filters.h"
#include "queue.h"

typedef DES_EDE_Encryption Default_ECB_Encryption;
typedef DES_EDE_Decryption Default_ECB_Decryption;
typedef SHS DefaultHashModule;

class DefaultBlockCipherBase
{
public:
    enum {SALTLENGTH=8, BLOCKSIZE=Default_ECB_Encryption::BLOCKSIZE};

protected:
    DefaultBlockCipherBase(const char *, const byte *, CipherDir);
    ~DefaultBlockCipherBase();

    enum {KEYLENGTH=Default_ECB_Encryption::KEYLENGTH};
    byte *keyIV;
    BlockTransformation *ecb;
};

class DefaultBlockEncryption : public DefaultBlockCipherBase, public CBCEncryption
{
public:
    DefaultBlockEncryption(const char *passphrase, const byte *salt);
};

class DefaultBlockDecryption : public DefaultBlockCipherBase, public CBCDecryption
{
public:
    DefaultBlockDecryption(const char *passphrase, const byte *salt);
};

class DefaultEncryptor : private DefaultBlockEncryption,
                         public BlockEncryptionFilter
{
public:
    DefaultEncryptor(const char *passphrase, BufferedTransformation *outQueue=new ByteQueue);

private:
    byte *GenerateSalt(const char *passphrase);
    byte *salt;
};

class DefaultDecryptor : public Filter
{
public:
    DefaultDecryptor(const char *passphrase, BufferedTransformation *outQueue=new ByteQueue);
    ~DefaultDecryptor();

    void Put(byte inByte);
    void Put(const byte *inString, unsigned int length);

    enum State {WAITING_FOR_KEYCHECK, KEY_GOOD, KEY_BAD};
    State CurrentState() const {return state;}

private:
    void CheckKey();

    enum {SALTLENGTH=DefaultBlockDecryption::SALTLENGTH,
          BLOCKSIZE=DefaultBlockDecryption::BLOCKSIZE};
    State state;
    char *const passphrase;
    byte *const salt;
    byte *const keyCheck;
    int count;
    DefaultBlockDecryption *cipher;
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -