# README
bech32m
Implementation of bech32m format for segwit addrs.
BIP: https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki
A lot of this code comes from Takatoshi Nakagawa's implementation but with optimizations on various obvious areas, including avoiding allocating memory for polymod calculation and such.
# Functions
No description provided by the author
No description provided by the author
Decode validate a Bech32/Bech32m string, and determine HRP and data.
Encode compute a Bech32 string given HRP and data values.
SegwitAddrDecode decode a segwit address.
SegwitAddrEncode encode a segwit address.
SegwitAddrEncodeNoCheck is the same as SegwitAddrEncode but it will not check if the generated address is valid.
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author