mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
29 lines
743 B
C++
29 lines
743 B
C++
#include "config.h"
|
|
|
|
#if USE_SSL
|
|
|
|
#include "FunctionsHashing.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
|
|
/// to better parallelize the build procedure and avoid MSan build failure
|
|
/// due to excessive resource consumption.
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(HashingSSL)
|
|
{
|
|
factory.registerFunction<FunctionMD4>();
|
|
factory.registerFunction<FunctionHalfMD5>();
|
|
factory.registerFunction<FunctionMD5>();
|
|
factory.registerFunction<FunctionSHA1>();
|
|
factory.registerFunction<FunctionSHA224>();
|
|
factory.registerFunction<FunctionSHA256>();
|
|
factory.registerFunction<FunctionSHA384>();
|
|
factory.registerFunction<FunctionSHA512>();
|
|
}
|
|
}
|
|
|
|
#endif
|