blob: 05d3e953f229a831018ee8959e99f330c40fbe9e (
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
|
/*
* Utils for calling OpenSSL
* (C) 2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_OPENSSL_H__
#define BOTAN_OPENSSL_H__
#include <botan/secmem.h>
#include <botan/exceptn.h>
#include <memory>
#include <openssl/err.h>
namespace Botan {
class OpenSSL_Error : public Exception
{
public:
OpenSSL_Error(const std::string& what) :
Exception(what + " failed: " + ERR_error_string(ERR_get_error(), nullptr)) {}
};
#define BOTAN_OPENSSL_BLOCK_PRIO 150
#define BOTAN_OPENSSL_HASH_PRIO 150
#define BOTAN_OPENSSL_RC4_PRIO 150
#define BOTAN_OPENSSL_RSA_PRIO 90
#define BOTAN_OPENSSL_ECDSA_PRIO 90
}
#endif
|