blob: df332cb232105da1de498339b07eac2c77105ad3 (
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
59
60
61
62
63
64
|
/*
* (C) 2009 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "apps.h"
#include <botan/lookup.h>
#include <iostream>
#include <fstream>
using namespace Botan;
namespace {
int hash(int argc, char* argv[])
{
if(argc < 3)
{
std::cout << "Usage: " << argv[0] << " digest <filenames>" << std::endl;
return 1;
}
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(!have_hash(hash))
{
std::cout << "Unknown hash \"" << argv[1] << "\"" << std::endl;
return 1;
}
Pipe pipe(new Hash_Filter(hash), new Hex_Encoder);
int skipped = 0;
for(int j = 2; argv[j] != nullptr; 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;
}
REGISTER_APP(hash);
}
|