icinga2/lib/base/tlsutility.hpp

65 lines
2.8 KiB
C++
Raw Normal View History

2013-03-18 19:02:42 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
2013-03-18 19:02:42 +01:00
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef TLSUTILITY_H
#define TLSUTILITY_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/object.hpp"
#include "base/qstring.hpp"
#include "base/exception.hpp"
2013-03-18 19:02:42 +01:00
#include <openssl/ssl.h>
2013-09-03 14:05:03 +02:00
#include <openssl/bio.h>
2013-03-18 19:02:42 +01:00
#include <openssl/err.h>
2013-09-03 14:05:03 +02:00
#include <openssl/comp.h>
2013-09-04 15:47:15 +02:00
#include <openssl/sha.h>
2013-03-18 19:02:42 +01:00
namespace icinga
{
2013-03-18 22:40:40 +01:00
shared_ptr<SSL_CTX> I2_BASE_API MakeSSLContext(const String& pubkey, const String& privkey, const String& cakey);
void I2_BASE_API AddCRLToSSLContext(const shared_ptr<SSL_CTX>& context, const String& crlPath);
2013-03-18 22:40:40 +01:00
String I2_BASE_API GetCertificateCN(const shared_ptr<X509>& certificate);
shared_ptr<X509> I2_BASE_API GetX509Certificate(const String& pemfile);
extern "C" int I2_BASE_API MakeX509CSR(const char *cn, const char *keyfile, const char *csrfile);
2013-10-10 23:06:28 +02:00
String I2_BASE_API SHA256(const String& s);
2013-03-18 19:02:42 +01:00
class I2_BASE_API openssl_error : virtual public std::exception, virtual public boost::exception { };
struct errinfo_openssl_error_;
typedef boost::error_info<struct errinfo_openssl_error_, int> errinfo_openssl_error;
inline std::string to_string(const errinfo_openssl_error& e)
{
std::ostringstream tmp;
int code = e.value();
const char *message = ERR_error_string(code, NULL);
if (message == NULL)
message = "Unknown error.";
tmp << code << ", \"" << message << "\"";
return tmp.str();
}
}
#endif /* TLSUTILITY_H */