2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-21 13:54:25 +02:00
|
|
|
|
|
|
|
#ifndef PKIUTILITY_H
|
|
|
|
#define PKIUTILITY_H
|
|
|
|
|
2017-09-05 14:44:56 +02:00
|
|
|
#include "remote/i2-remote.hpp"
|
2018-09-06 15:58:42 +02:00
|
|
|
#include "base/exception.hpp"
|
2014-10-21 13:54:25 +02:00
|
|
|
#include "base/dictionary.hpp"
|
|
|
|
#include "base/string.hpp"
|
2015-11-24 17:01:46 +01:00
|
|
|
#include <openssl/x509v3.h>
|
2018-08-09 16:23:24 +02:00
|
|
|
#include <memory>
|
2014-10-21 13:54:25 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2017-09-05 14:44:56 +02:00
|
|
|
* @ingroup remote
|
2014-10-21 13:54:25 +02:00
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class PkiUtility
|
2014-10-21 13:54:25 +02:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 04:25:35 +01:00
|
|
|
static int NewCa();
|
2014-10-21 13:54:25 +02:00
|
|
|
static int NewCert(const String& cn, const String& keyfile, const String& csrfile, const String& certfile);
|
|
|
|
static int SignCsr(const String& csrfile, const String& certfile);
|
2017-11-21 13:20:55 +01:00
|
|
|
static std::shared_ptr<X509> FetchCert(const String& host, const String& port);
|
|
|
|
static int WriteCert(const std::shared_ptr<X509>& cert, const String& trustedfile);
|
2014-10-21 13:54:25 +02:00
|
|
|
static int GenTicket(const String& cn, const String& salt, std::ostream& ticketfp);
|
|
|
|
static int RequestCertificate(const String& host, const String& port, const String& keyfile,
|
2017-12-19 15:50:05 +01:00
|
|
|
const String& certfile, const String& cafile, const std::shared_ptr<X509>& trustedcert,
|
|
|
|
const String& ticket = String());
|
2017-11-21 13:20:55 +01:00
|
|
|
static String GetCertificateInformation(const std::shared_ptr<X509>& certificate);
|
2018-01-04 04:25:35 +01:00
|
|
|
static Dictionary::Ptr GetCertificateRequests();
|
2014-10-21 13:54:25 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
PkiUtility();
|
2014-10-21 18:13:08 +02:00
|
|
|
|
2014-10-21 13:54:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PKIUTILITY_H */
|