Skip to content

Commit 1d412e4

Browse files
Temporary disable encrypt/decrypt functions
1 parent 9f92844 commit 1d412e4

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/Functions/FunctionsAES.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <Functions/FunctionsAES.h>
22

3-
#if USE_SSL
3+
#if 0 //USE_SSL
44

55
#include <openssl/evp.h>
66
#include <openssl/err.h>

src/Functions/FunctionsAES.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# include <Common/config.h>
55
#endif
66

7-
#if USE_SSL
7+
#if 0 //USE_SSL
88
#include <DataTypes/DataTypeString.h>
99
#include <Columns/ColumnString.h>
1010
#include <Functions/IFunction.h>

src/Functions/aes_decrypt_mysql.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# include <Common/config.h>
33
#endif
44

5-
#if USE_SSL
5+
#if 0 //USE_SSL
66

77
#include <Functions/FunctionFactory.h>
88
#include <Functions/FunctionsAES.h>

src/Functions/aes_encrypt_mysql.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# include <Common/config.h>
33
#endif
44

5-
#if USE_SSL
5+
#if 0 //USE_SSL
66

77
#include <Functions/FunctionFactory.h>
88
#include <Functions/FunctionsAES.h>

src/Functions/decrypt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# include <Common/config.h>
33
#endif
44

5-
#if USE_SSL
5+
#if 0 //USE_SSL
66

77
#include <Functions/FunctionFactory.h>
88
#include <Functions/FunctionsAES.h>

src/Functions/encrypt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# include <Common/config.h>
33
#endif
44

5-
#if USE_SSL
5+
#if 0 //USE_SSL
66

77
#include <Functions/FunctionFactory.h>
88
#include <Functions/FunctionsAES.h>

src/Functions/registerFunctions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void registerFunctionBayesAB(FunctionFactory &);
4949
void registerFunctionTid(FunctionFactory & factory);
5050
void registerFunctionLogTrace(FunctionFactory & factory);
5151

52-
#if USE_SSL
52+
#if 0 //USE_SSL
5353
void registerFunctionEncrypt(FunctionFactory & factory);
5454
void registerFunctionDecrypt(FunctionFactory & factory);
5555
void registerFunctionAESEncryptMysql(FunctionFactory & factory);
@@ -104,7 +104,7 @@ void registerFunctions()
104104
registerFunctionBayesAB(factory);
105105
#endif
106106

107-
#if USE_SSL
107+
#if 0 //USE_SSL
108108
registerFunctionEncrypt(factory);
109109
registerFunctionDecrypt(factory);
110110
registerFunctionAESEncryptMysql(factory);

0 commit comments

Comments
 (0)