You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
OpenSSL 3 support for Columnstore
This commit is contained in:
@ -18,10 +18,17 @@
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/rand.h>
|
||||
#include <openssl/opensslv.h>
|
||||
|
||||
#include "secrets.h"
|
||||
#include "mcsconfig.h"
|
||||
|
||||
#ifdef OPENSSL_VERSION_PREREQ
|
||||
#if OPENSSL_VERSION_PREREQ(3,0)
|
||||
#define EVP_CIPHER_key_length EVP_CIPHER_get_key_length
|
||||
#endif
|
||||
#endif
|
||||
|
||||
using std::string;
|
||||
using ByteVec = std::vector<uint8_t>;
|
||||
|
||||
|
Reference in New Issue
Block a user