mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
3356d75b23
Secure inter-cluster query execution (with initial_user as current query user) [v3]
26 lines
625 B
C++
26 lines
625 B
C++
#pragma once
|
|
|
|
#if !defined(ARCADIA_BUILD)
|
|
# include <Common/config.h>
|
|
#endif
|
|
|
|
#if USE_SSL
|
|
# include <common/types.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Encodes `text` and returns it.
|
|
std::string encodeSHA256(const std::string_view & text);
|
|
std::string encodeSHA256(const void * text, size_t size);
|
|
/// `out` must be at least 32 bytes long.
|
|
void encodeSHA256(const std::string_view & text, unsigned char * out);
|
|
void encodeSHA256(const void * text, size_t size, unsigned char * out);
|
|
|
|
/// Returns concatenation of error strings for all errors that OpenSSL has recorded, emptying the error queue.
|
|
String getOpenSSLErrors();
|
|
|
|
}
|
|
#endif
|