#if !defined(ARCADIA_BUILD) # include #endif #if USE_SSL #include #include namespace { struct DecryptImpl { static constexpr auto name = "decrypt"; static constexpr auto compatibility_mode = OpenSSLDetails::CompatibilityMode::OpenSSL; }; } namespace DB { void registerFunctionDecrypt(FunctionFactory & factory) { factory.registerFunction>(); } } #endif