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

📄 elgamal.h

📁 含有多种公开密钥算法、多种块加密、多种数据流加密、多种HASH函数、多种CheckSum校验、多种MAC校验等几十种加密算法的程序
💻 H
字号:
/************************************************** ElGamal Header File                            ** (C) 1999-2002 The Botan Project                **************************************************/#ifndef BOTAN_ELGAMAL_H__#define BOTAN_ELGAMAL_H__#include <botan/bigint.h>#include <botan/pk_keys.h>#include <botan/mod_exp.h>#include <botan/dl_parm.h>namespace Botan {/************************************************** ElGamal Public Key                             **************************************************/class ElGamal_PublicKey : public PK_Encrypting_Key   {   public:      SecureVector<byte> encrypt(const byte[], u32bit) const;      u32bit max_input_bits() const { return (p.bits()-1); }      bool check_params() const;      BigInt get_p() const { return p; }      BigInt get_g() const { return g; }      BigInt get_y() const { return y; }      ElGamal_PublicKey(const DL_Group&, const BigInt&);      ElGamal_PublicKey(const ElGamal_PublicKey&);   protected:      DL_Group group;      const BigInt &p, &g;      BigInt y;      FixedBase_Exp powermod_g_p, powermod_y_p;   };/************************************************** ElGamal Private Key                            **************************************************/class ElGamal_PrivateKey : public ElGamal_PublicKey, public PK_Decrypting_Key   {   public:      SecureVector<byte> decrypt(const byte[], u32bit) const;      bool check_params() const;      BigInt get_x() const { return x; }      ElGamal_PrivateKey(const DL_Group&);      ElGamal_PrivateKey(const DL_Group&, const BigInt&, const BigInt&);   private:      BigInt x;   };}#endif

⌨️ 快捷键说明

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