diff options
author | lloyd <[email protected]> | 2008-10-13 17:45:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-13 17:45:40 +0000 |
commit | a838a020085a76484f0f8aadb5beebc0bdf74975 (patch) | |
tree | a9a3271f4004fb33dc0a455cc2d11bd30506eb6b | |
parent | a06c4e953c570d5aeb24bd950143c35dd72adf5b (diff) |
Add an example for using checksums (CRC, Adler32) and Pipe/Filter/Fork
-rw-r--r-- | doc/examples/checksum.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/examples/checksum.cpp b/doc/examples/checksum.cpp new file mode 100644 index 000000000..3dc6e9757 --- /dev/null +++ b/doc/examples/checksum.cpp @@ -0,0 +1,31 @@ +#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; + } + + 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"; + } |