mailiverse/cpp/Lib/xcode-botan/Botan-1.10.3-clean/doc/examples/hash.cpp

59 lines
1.4 KiB
C++
Raw Normal View History

2013-07-25 22:51:23 -04:00
/*
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <iostream>
#include <fstream>
#include <botan/botan.h>
int main(int argc, char* argv[])
{
if(argc < 3)
{
std::cout << "Usage: " << argv[0] << " digest <filenames>" << std::endl;
return 1;
}
Botan::LibraryInitializer init;
std::string hash = argv[1];
/* a couple of special cases, kind of a crock */
if(hash == "sha1") hash = "SHA-1";
if(hash == "md5") hash = "MD5";
try {
if(!Botan::have_hash(hash))
{
std::cout << "Unknown hash \"" << argv[1] << "\"" << std::endl;
return 1;
}
Botan::Pipe pipe(new Botan::Hash_Filter(hash),
new Botan::Hex_Encoder);
int skipped = 0;
for(int j = 2; argv[j] != 0; j++)
{
std::ifstream file(argv[j], std::ios::binary);
if(!file)
{
std::cout << "ERROR: could not open " << argv[j] << std::endl;
skipped++;
continue;
}
pipe.start_msg();
file >> pipe;
pipe.end_msg();
pipe.set_default_msg(j-2-skipped);
std::cout << pipe << " " << argv[j] << std::endl;
}
}
catch(std::exception& e)
{
std::cout << "Exception caught: " << e.what() << std::endl;
}
return 0;
}