mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
Revert "Temporary disable encrypt/decrypt functions"
This reverts commit 1d412e433c
.
This commit is contained in:
parent
1d412e433c
commit
3be3e1af1f
@ -1,6 +1,6 @@
|
||||
#include <Functions/FunctionsAES.h>
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/err.h>
|
||||
|
@ -4,7 +4,7 @@
|
||||
# include <Common/config.h>
|
||||
#endif
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
#include <DataTypes/DataTypeString.h>
|
||||
#include <Columns/ColumnString.h>
|
||||
#include <Functions/IFunction.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
# include <Common/config.h>
|
||||
#endif
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionsAES.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
# include <Common/config.h>
|
||||
#endif
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionsAES.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
# include <Common/config.h>
|
||||
#endif
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionsAES.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
# include <Common/config.h>
|
||||
#endif
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionsAES.h>
|
||||
|
@ -49,7 +49,7 @@ void registerFunctionBayesAB(FunctionFactory &);
|
||||
void registerFunctionTid(FunctionFactory & factory);
|
||||
void registerFunctionLogTrace(FunctionFactory & factory);
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
void registerFunctionEncrypt(FunctionFactory & factory);
|
||||
void registerFunctionDecrypt(FunctionFactory & factory);
|
||||
void registerFunctionAESEncryptMysql(FunctionFactory & factory);
|
||||
@ -104,7 +104,7 @@ void registerFunctions()
|
||||
registerFunctionBayesAB(factory);
|
||||
#endif
|
||||
|
||||
#if 0 //USE_SSL
|
||||
#if USE_SSL
|
||||
registerFunctionEncrypt(factory);
|
||||
registerFunctionDecrypt(factory);
|
||||
registerFunctionAESEncryptMysql(factory);
|
||||
|
Loading…
Reference in New Issue
Block a user