ClickHouse/src/Common/base58.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
238 B
C++
Raw Normal View History

2022-07-16 16:58:47 +00:00
#pragma once
2022-09-11 01:53:04 +00:00
#include <Core/Types.h>
2022-09-11 06:09:14 +00:00
#include <optional>
2022-07-16 16:58:47 +00:00
2022-09-11 01:53:04 +00:00
namespace DB
2022-07-16 16:58:47 +00:00
{
2022-09-11 04:31:15 +00:00
size_t encodeBase58(const UInt8 * src, size_t src_length, UInt8 * dst);
2022-09-11 06:09:14 +00:00
std::optional<size_t> decodeBase58(const UInt8 * src, size_t src_length, UInt8 * dst);
2022-07-16 16:58:47 +00:00
}