aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/ocsp.cpp
blob: 1106d3fe46bec271567b4efe3abbf21f932d80bb (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
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#include "apps.h"

#if defined(BOTAN_HAS_OCSP)

#include <botan/x509cert.h>
#include <botan/certstor.h>
#include <botan/x509path.h>
#include <botan/ocsp.h>

using namespace Botan;

namespace {

int ocsp_check(int argc, char* argv[])
   {
   if(argc != 2)
      {
      std::cout << "Usage: ocsp subject.pem issuer.pem";
      return 2;
      }

   X509_Certificate subject(argv[1]);
   X509_Certificate issuer(argv[2]);

   Certificate_Store_In_Memory cas;
   cas.add_certificate(issuer);
   OCSP::Response resp = OCSP::online_check(issuer, subject, &cas);

   auto status = resp.status_for(issuer, subject);

   if(status == Certificate_Status_Code::VERIFIED)
      {
      std::cout << "OCSP check OK\n";
      return 0;
      }
   else
      {
      std::cout << "OCSP check failed " << Path_Validation_Result::status_string(status) << "\n";
      return 1;
      }
   }

REGISTER_APP(ocsp_check);

}

#endif