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

📄 hasher.cpp

📁 含有多种公开密钥算法、多种块加密、多种数据流加密、多种HASH函数、多种CheckSum校验、多种MAC校验等几十种加密算法的程序
💻 CPP
字号:
/*An Opencl example application which emulates apoorly written version of "gpg --print-md"Written by Jack Lloyd (lloyd@randombit.net), quite a while ago (as of June 2001)This file is in the public domain*/#include <fstream>#include <iostream>#include <string>#include <botan/filters.h>int main(int argc, char* argv[])   {   if(argc < 2)      {      std::cout << "Usage: hasher <filenames>" << std::endl;      return 1;      }   Botan::LibraryInitializer init;   const int COUNT = 3;   std::string name[COUNT] = { "MD5", "SHA-1", "RIPEMD-160" };   for(int j = 1; argv[j] != 0; j++)      {      Botan::Filter* hash[COUNT] = {         new Botan::Chain(new Botan::Hash_Filter(name[0]),                           new Botan::Hex_Encoder),         new Botan::Chain(new Botan::Hash_Filter(name[1]),                           new Botan::Hex_Encoder),         new Botan::Chain(new Botan::Hash_Filter(name[2]),                           new Botan::Hex_Encoder) };      Botan::Pipe pipe(new Botan::Fork(hash, COUNT));      std::ifstream file(argv[j]);      if(!file)         {         std::cout << "ERROR: could not open " << argv[j] << std::endl;         continue;         }      pipe.start_msg();      file >> pipe;      pipe.end_msg();      file.close();      for(int k = 0; k != COUNT; k++)         {         pipe.set_default_msg(k);         std::cout << name[k] << "(" << argv[j] << ") = " << pipe << std::endl;         }      }   return 0;   }

⌨️ 快捷键说明

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