blob: 2d675d546b7a5a8e539753638bd77ae8072ba62a (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/*
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
/*
* Test Driver for Botan
*/
#include <vector>
#include <string>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <exception>
#include <limits>
#include <memory>
#include <botan/init.h>
#include <botan/version.h>
#include <botan/auto_rng.h>
#include <botan/cpuid.h>
#include <botan/http_util.h>
using namespace Botan;
#include "apps.h"
namespace {
int help(int , char* argv[])
{
std::cout << "Usage: " << argv[0] << " [subcommand]\n";
std::cout << "version speed cpuid bcrypt x509 factor tls_client tls_server asn1 base64 hash self_sig ...\n";
return 1;
}
}
int main(int argc, char* argv[])
{
if(BOTAN_VERSION_MAJOR != version_major() ||
BOTAN_VERSION_MINOR != version_minor() ||
BOTAN_VERSION_PATCH != version_patch())
{
std::cout << "Warning: linked version ("
<< version_major() << '.'
<< version_minor() << '.'
<< version_patch()
<< ") does not match version built against ("
<< BOTAN_VERSION_MAJOR << '.'
<< BOTAN_VERSION_MINOR << '.'
<< BOTAN_VERSION_PATCH << ")\n";
}
try
{
Botan::LibraryInitializer init;
if(argc < 2)
return help(argc, argv);
const std::string cmd = argv[1];
if(cmd == "help")
return help(argc, argv);
if(cmd == "version")
{
std::cout << Botan::version_string() << "\n";
return 0;
}
if(cmd == "cpuid")
{
CPUID::print(std::cout);
return 0;
}
if(cmd == "speed")
return speed_main(argc - 1, argv + 1);
if(cmd == "http_get")
{
auto resp = HTTP::GET_sync(argv[2]);
std::cout << resp << "\n";
}
int e = apps_main(cmd, argc - 1, argv + 1);
if(e == -1)
{
std::cout << "Unknown command " << cmd << "\n";
return help(argc, argv);
}
return e;
}
catch(std::exception& e)
{
std::cerr << "Exception: " << e.what() << std::endl;
return 1;
}
catch(...)
{
std::cerr << "Unknown (...) exception caught" << std::endl;
return 1;
}
return 0;
}
|