mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
26 lines
542 B
C++
26 lines
542 B
C++
#include "config.h"
|
|
|
|
#if USE_SSL
|
|
|
|
#include "FunctionsHashing.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
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
|