将密钥传递给Crypto ++中的AES解密

时间:2018-07-19 01:21:23

标签: c++ encryption crypto++

我为此问题进行了大量搜索,但未找到任何解决方案。在当前的项目中,我必须使用发送方接收方表单来对图像进行加密。因此,我必须在发送方部分生成一个密钥来加密文件,并且我必须使用相同的密钥(作为参数传递给main)来获取原始数据,以继续执行程序。

我将密钥保存在文本文件中:

   void GetKeyAndIv() {
// Initialize the key and IV
prng.GenerateBlock( key, key.size() );
prng.GenerateBlock(iv, iv.size());
};

    /*********************Begin of the Function***********************/
//Function encrypt a file (original file) and store the result in another file (encrypted_file)
void Encrypt(std::string original_file, std::string encrypted_file_hex,string encrypted_file,string binary) {

    ofstream out;
    out.open("Key.txt");
    out.clear();
    out<<"key = "<< key<<endl;
    out<<"iv = "<< iv<<endl;

    string cipher, encoded;

    //Getting the encryptor ready
    CBC_Mode< CryptoPP::AES >::Encryption e;
    e.SetKeyWithIV( key, key.size(), iv );


  try
  {

        ifstream infile(original_file.c_str(), ios::binary);
        ifstream::pos_type size = infile.seekg(0, std::ios_base::end).tellg();
        infile.seekg(0, std::ios_base::beg);

        //read the original file and print it
        string temp;
        temp.resize(size);
        infile.read((char*)temp.data(), temp.size());
        infile.close();


         // Encryption
CryptoPP::StringSource ss( temp, true,
   new CryptoPP::StreamTransformationFilter( e,
      new CryptoPP::StringSink( cipher )//,
      //CryptoPP::BlockPaddingSchemeDef::NO_PADDING
   ) // StreamTransformationFilter
); // StringSource




 std::ofstream outfile1(encrypted_file.c_str(),ios::out | ios::binary);
  outfile1.write(cipher.c_str() , cipher.size());


  }
catch( const CryptoPP::Exception& e )
{

    cout <<"Encryption Error:\n" <<e.what() << endl;
    system("pause");
    exit(1);
}

然后我使用以下代码将其传递给客户端:

int main(int argc, char* argv[])
{
.....
        string s1=argv[7];
        SecByteBlock b1(reinterpret_cast<const byte*>(&s1[0]), s1.size());
        string s2=argv[8];
        SecByteBlock iv1(reinterpret_cast<const byte*>(&s2[0]), s2.size());
.....
}

使用以下代码尝试解密文件时出现错误

   void Decrypt(std::string encrypted_file,SecByteBlock key,SecByteBlock iv,string decrypted_file) {


        string recovered;
     try
     {
          // Read the encrypted file contents to a string as binary data.
      std::ifstream infile(encrypted_file.c_str(), std::ios::binary);
      const std::string cipher_text((std::istreambuf_iterator<char>(infile)),
                                     std::istreambuf_iterator<char>());
      infile.close();


      CBC_Mode< CryptoPP::AES >::Decryption d;
        d.SetKeyWithIV( key, key.size(), iv );

解密错误: StreamTransformationFilter:发现无效的PKCS#7块填充

这意味着我在解密过程中拥有不同的密钥。为什么会发生这种情况,以及是否有人可以帮助解决此问题。

2 个答案:

答案 0 :(得分:0)

如果用于解密的密钥与用于加密的密钥不同,就会发生这种情况。

在解密期间,在PKCS#7模式下,在解密最后一个16字节的块之后,将检查填充字节,以了解消息的原始长度(不必是16字节的倍数) :最后一个字节应为0x01,或者最后两个字节应等于0x02,或者最后三个字节应等于0x03,...当解密密钥与加密密钥不同时,填充字节为未正确解密,这意味着解密时出现PKCS#7块填充错误。

答案 1 :(得分:0)

我将CBC_Mode更改为其他模式,而ODB_Mode为我工作