Revert "Temporary disable encrypt/decrypt functions"

This reverts commit 1d412e433c.
This commit is contained in:
Alexey Milovidov 2020-12-17 00:05:03 +03:00
parent 1d412e433c
commit 3be3e1af1f
7 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
#include <Functions/FunctionsAES.h>
#if 0 //USE_SSL
#if USE_SSL
#include <openssl/evp.h>
#include <openssl/err.h>

View File

@ -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>

View File

@ -2,7 +2,7 @@
# include <Common/config.h>
#endif
#if 0 //USE_SSL
#if USE_SSL
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsAES.h>

View File

@ -2,7 +2,7 @@
# include <Common/config.h>
#endif
#if 0 //USE_SSL
#if USE_SSL
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsAES.h>

View File

@ -2,7 +2,7 @@
# include <Common/config.h>
#endif
#if 0 //USE_SSL
#if USE_SSL
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsAES.h>

View File

@ -2,7 +2,7 @@
# include <Common/config.h>
#endif
#if 0 //USE_SSL
#if USE_SSL
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsAES.h>

View File

@ -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);