mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +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 EncryptMySQLModeImpl
|
|
{
|
|
static constexpr auto name = "aes_encrypt_mysql";
|
|
static constexpr auto compatibility_mode = OpenSSLDetails::CompatibilityMode::MySQL;
|
|
};
|
|
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionAESEncryptMysql(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionEncrypt<EncryptMySQLModeImpl>>();
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|