mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
30 lines
476 B
C++
30 lines
476 B
C++
#include <Common/config.h>
|
|
|
|
#if USE_SSL
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsAES.h>
|
|
|
|
namespace
|
|
{
|
|
|
|
struct DecryptMySQLModeImpl
|
|
{
|
|
static constexpr auto name = "aes_decrypt_mysql";
|
|
static constexpr auto compatibility_mode = OpenSSLDetails::CompatibilityMode::MySQL;
|
|
};
|
|
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionAESDecryptMysql(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionDecrypt<DecryptMySQLModeImpl>>();
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|