mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
14 lines
238 B
C++
14 lines
238 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
#include <optional>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
size_t encodeBase58(const UInt8 * src, size_t src_length, UInt8 * dst);
|
|
std::optional<size_t> decodeBase58(const UInt8 * src, size_t src_length, UInt8 * dst);
|
|
|
|
}
|