aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/x509print.cpp
blob: 5c069ca77a8ad8fd6e1814addbf9cade20417189 (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(const std::vector<std::string> &args)
   {
   if(args.size() != 2)
      {
      std::cout << "Usage: " << args[0] << " cert.pem" << std::endl;
      return 1;
      }

   X509_Certificate cert(args[1]);

   std::cout << cert.to_string() << std::endl;

   return 0;
   }

REGISTER_APP(x509print);

}

#endif