# README
Modified implementation based on github.com/mr-tron/base58
itself based on https://github.com/trezor/trezor-crypto/blob/master/base58.c
It's nice to have a fast base58 implementation but do we really need to have the slow version in the same lib too?
Usage
// to decode some base58 string
dec, err := base58.Bitcoin.Decode(in)
if err != nil {
// handle err
}
// or, to encode:
enc := base58.Bitcoin.Encode(dec)
# Functions
EncodedLen returns the encoded len for a given buffer, checking it for initial zeroes.
EncodedMaxLen return the maximum encoded len for an input of ln bytes.
NewEncoding returns a encoding structure initialized for decoding/encoding using the passed parameter
It panics if the passed string is not 58 bytes long or isn't valid ASCII.
# 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
No description provided by the author