我正在读取图像,对其进行加密,然后对其进行解密。目标是最终循环执行此操作并记录完成该过程所需的时间。当前,我所拥有的将读取文件,然后对其进行加密,加密,然后基于恢复的数据创建另一个文件。我不需要用解密的图片制作另一个文件。以前我一直在使用StringSourceStringSink,但这仅适用于文本文件。我从How to read an image to a string for encrypting Crypto++获得了一些帮助,并开始使用FileSinkFileSource
FileSinkStringSinkFileSourceStringSource到底有什么区别?

另外,在下面的示例中,为什么需要将密码设置为某些值?以前,当我只使用StringSource时,我的字符串密码尚未初始化,但是现在我正在使用FileSource,它需要初始化才能正常工作。

int main(int argc, char* argv[])
{
    AutoSeededRandomPool prng_blowfish;

    SecByteBlock key_blowfish(Blowfish::DEFAULT_KEYLENGTH);
    prng_blowfish.GenerateBlock(key_blowfish, key_blowfish.size());

    byte iv_blowfish[Blowfish::BLOCKSIZE];
    prng_blowfish.GenerateBlock(iv_blowfish, sizeof(iv_blowfish));

    string ifilename = "sample_files/1MB.jpg";
    string cipher = "1MB.enc";
    string rfilename = "r1MB.jpg";

    try
    {
        EAX<Blowfish>::Encryption e_blowfish;
        e_blowfish.SetKeyWithIV(key_blowfish, key_blowfish.size(), iv_blowfish, sizeof(iv_blowfish));

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

        FileSource fs1(ifilename.c_str(), true, new AuthenticatedEncryptionFilter(e_blowfish, new FileSink(cipher.c_str())));

        EAX<Blowfish>::Decryption d_blowfish;
        d_blowfish.SetKeyWithIV(key_blowfish, key_blowfish.size(), iv_blowfish, sizeof(iv_blowfish));

        FileSource fs2(cipher.c_str(), true, new AuthenticatedDecryptionFilter(d_blowfish, new FileSink(rfilename.c_str()), AuthenticatedDecryptionFilter::THROW_EXCEPTION));
    }
    catch (const Exception& ex)
    {
        cerr << ex.what() << endl;
    }

    return 0;
}

最佳答案



源,过滤器和接收器是Crypto ++中管道设计的一部分。来自源的数据流经过过滤器转换,然后在接收器处结束。

所有来源都是可互换的。所有过滤器均可互换。而且所有的水槽都是可以互换的。例如,要在StringSinkFileSink之间切换,您需要提供一个带有FileSink的文件名。否则,它们的操作相同。再举一个例子,您可以在HexEncoderBase64Encoder之间切换而无需更改。作为最后一个示例,SocketSourceSocketSink将需要IP地址和端口。可能需要更改的内容取决于对象。

有许多资料来源。从Source Class Reference:

  • FileSource
  • StringSource
  • RandomNumberSource
  • WindowPipeSource
  • SocketSource

  • 有许多过滤器。您正在使用其中的两个-AuthenticatedEncryptionFilterAuthenticatedDecryptionFilter。从Filter Class ReferenceFilterWithBufferedInput Class Reference:
  • HexEncoder
  • HexEncoder
  • Base32Encoder
  • Base32Decoder
  • Base64Encoder
  • Base64Encoder
  • DefaultEncryptor
  • DefaultEncryptorWithMAC
  • DefaultDecryptor
  • DefaultDecryptorWithMAC
  • ...
  • StreamTransformationFilter
  • AuthenticatedEncryptionFilter
  • AuthenticatedDecryptionFilter

  • 有很多水槽。从Sink Class Reference:
  • ArraySink
  • BitBucket
  • RandomNumberSink
  • StringSink
  • FileSink
  • SocketSink
  • ...

  • 有一些高级主题,但是我认为它们暂时不重要。例如,BufferedTransformation的角色以及Attachable返回true的含义。答案是过滤器和接收器都是BufferedTransformation,而Attachable = true表示其是过滤器(否则为接收器)。


    StringSourceStringSink不需要任何东西,因为它只是内存中的一排再见。 FileSourceFileSink需要文件名,而您使用cipher作为文件名。您必须提供文件名,因为对象与文件/流有关。如果您使用的是SocketSourceSocketSink,则需要提供IP地址和端口(更正确的是socket_t)。

    这是FileSource Class Reference中的FileSource构造函数。您正在代码中使用第三个构造函数。
    FileSource (BufferedTransformation *attachment=NULL)
    FileSource (std::istream &in, bool pumpAll, BufferedTransformation *attachment=NULL)
    FileSource (const char *filename, bool pumpAll, BufferedTransformation *attachment=NULL, bool binary=true)
    

    这是FileSink Class Reference中的FileSink构造函数。您正在代码中使用第二个构造函数。
    FileSink (std::ostream &out)
    FileSink (const char *filename, bool binary=true)
    

    关于c++ - FileSink,StringSink,Filesource,StringSource Crypto++有什么区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23400054/

    10-11 04:11