aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/checksum.cpp
blob: dba7a7d70f7dc839ad1c501359d6bc502a93a99d (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
/*
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#include <botan/botan.h>
#include <botan/filters.h>

#include <iostream>

using namespace Botan;

int main(int argc, char* argv[])
   {
   if(argc != 2)
      {
      std::cout << "Usage: " << argv[0] << " filename\n";
      return 1;
      }

   Botan::LibraryInitializer init;

   Pipe pipe(new Fork(
                new Chain(new Hash_Filter("CRC24"), new Hex_Encoder),
                new Chain(new Hash_Filter("CRC32"), new Hex_Encoder),
                new Chain(new Hash_Filter("Adler32"), new Hex_Encoder)
                ));

   DataSource_Stream in(argv[1]);

   pipe.process_msg(in);

   std::cout << pipe.read_all_as_string(0) << "\n";
   std::cout << pipe.read_all_as_string(1) << "\n";
   std::cout << pipe.read_all_as_string(2) << "\n";
   }