doc.mx raw

   1  // Copyright (c) 2017 The btcsuite developers
   2  // Use of this source code is governed by an ISC
   3  // license that can be found in the LICENSE file.
   4  
   5  // Package bech32 provides a Go implementation of the bech32 format specified in
   6  // BIP 173.
   7  //
   8  // Bech32 strings consist of a human-readable part (hrp), followed by the
   9  // separator 1, then a checksummed data part encoded using the 32 characters
  10  // "qpzry9x8gf2tvdw0s3jn54khce6mua7l".
  11  //
  12  // More info: https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki
  13  package bech32
  14