blob: 4bc46d5b917619f6e86c42c71dd4f779d52bcf77 (
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
|
/*
* (C) 2014 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "apps.h"
#if defined(BOTAN_HAS_X509_CERTIFICATES)
#include <botan/x509cert.h>
namespace {
int x509print(int argc, char* argv[])
{
if(argc < 1)
{
std::cout << "Usage: " << argv[0] << " cert.pem\n";
return 1;
}
X509_Certificate cert(argv[1]);
std::cout << cert.to_string() << "\n";
return 0;
}
REGISTER_APP(x509print);
}
#endif
|