summaryrefslogtreecommitdiffstats
path: root/botan/doc/examples/hasher.cpp
blob: 5ba982fc0fb6f0db59860f4ac83103125e8f43be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
A Botan example application which emulates a
poorly 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/botan.h>

int main(int argc, char* argv[])
   {
   if(argc < 2)
      {
      std::cout << "Usage: " << argv[0] << " <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;
   }