Bitcoin Core  0.21.1
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules
Classes | Enumerations | Functions
bech32 Namespace Reference

Classes

struct  DecodeResult
 

Enumerations

enum  Encoding { Encoding::INVALID, Encoding::BECH32, Encoding::BECH32M }
 

Functions

std::string Encode (Encoding encoding, const std::string &hrp, const data &values)
 Encode a Bech32 or Bech32m string. More...
 
DecodeResult Decode (const std::string &str)
 Decode a Bech32 or Bech32m string. More...
 
std::string Encode (Encoding encoding, const std::string &hrp, const std::vector< uint8_t > &values)
 Encode a Bech32 or Bech32m string. More...
 

Enumeration Type Documentation

enum bech32::Encoding
strong
Enumerator
INVALID 

Failed decoding.

BECH32 

Bech32 encoding as defined in BIP173.

BECH32M 

Bech32m encoding as defined in BIP350.

Definition at line 23 of file bech32.h.

Function Documentation

DecodeResult bech32::Decode ( const std::string &  str)

Decode a Bech32 or Bech32m string.

Definition at line 168 of file bech32.cpp.

Here is the caller graph for this function:

std::string bech32::Encode ( Encoding  encoding,
const std::string &  hrp,
const std::vector< uint8_t > &  values 
)

Encode a Bech32 or Bech32m string.

If hrp contains uppercase characters, this will cause an assertion error. Encoding must be one of BECH32 or BECH32M.

std::string bech32::Encode ( Encoding  encoding,
const std::string &  hrp,
const data &  values 
)

Encode a Bech32 or Bech32m string.

Definition at line 152 of file bech32.cpp.

Here is the call graph for this function:

Here is the caller graph for this function: