mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-24 11:08:16 +02:00
32 lines
1.4 KiB
C++
32 lines
1.4 KiB
C++
//
|
|
// Copyright (c) 2021 Kasper Laudrup (laudrup at stacktrace dot dk)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BOOST_WINTLS_OCSP_RESPONDER_HPP
|
|
#define BOOST_WINTLS_OCSP_RESPONDER_HPP
|
|
|
|
// Boost.Process misses an algorithm include in Boost 1.77,
|
|
// see https://github.com/boostorg/process/issues/213.
|
|
#include <algorithm>
|
|
#include <boost/process.hpp>
|
|
|
|
// Start an OCSP responder at http://localhost:5000 that can provide OCSP responses for
|
|
// test certificates signed by test_certificates/ca_intermediate.crt.
|
|
inline boost::process::child start_ocsp_responder() {
|
|
auto path = boost::process::search_path("openssl.exe");
|
|
auto args = boost::process::args({"ocsp",
|
|
"-CApath", TEST_CERTIFICATES_PATH,
|
|
"-index", TEST_CERTIFICATES_PATH "certindex",
|
|
"-port", "5000",
|
|
"-nmin", "1",
|
|
"-rkey", TEST_CERTIFICATES_PATH "ocsp_signer_ca_intermediate.key",
|
|
"-rsigner", TEST_CERTIFICATES_PATH "ocsp_signer_ca_intermediate.crt",
|
|
"-CA", TEST_CERTIFICATES_PATH "ca_intermediate.crt"});
|
|
return boost::process::child(path, args, boost::process::std_out > boost::process::null);
|
|
}
|
|
|
|
#endif
|