#include #if USE_SSL #include #include namespace { struct EncryptImpl { static constexpr auto name = "encrypt"; static constexpr auto compatibility_mode = OpenSSLDetails::CompatibilityMode::OpenSSL; }; } namespace DB { void registerFunctionEncrypt(FunctionFactory & factory) { factory.registerFunction>(); } } #endif