Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
cashaddr.h
Go to the documentation of this file.
1// Copyright (c) 2017 Pieter Wuille
2// Copyright (c) 2017-2018 The Bitcoin developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_CASHADDR_H
7#define BITCOIN_CASHADDR_H
8
9// Cashaddr is an address format inspired by bech32.
10
11#include <cstdint>
12#include <string>
13#include <vector>
14
15namespace cashaddr {
16
20std::string Encode(const std::string &prefix,
21 const std::vector<uint8_t> &values);
22
26std::pair<std::string, std::vector<uint8_t>>
27Decode(const std::string &str, const std::string &default_prefix);
28
29} // namespace cashaddr
30
31#endif // BITCOIN_CASHADDR_H
std::pair< std::string, data > Decode(const std::string &str, const std::string &default_prefix)
Decode a cashaddr string.
Definition cashaddr.cpp:214
std::string Encode(const std::string &prefix, const data &payload)
Encode a cashaddr string.
Definition cashaddr.cpp:198
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85
const char * prefix
Definition rest.cpp:817