aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/x509print.cpp
blob: e583c91c28c0ef3b0f88f35174c0c619e09918db (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() != 1)
      {
      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