2014-12-19 13:40:50 +01:00
|
|
|
base58
|
|
|
|
==========
|
|
|
|
|
2017-05-25 19:56:27 +02:00
|
|
|
[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
|
2014-12-19 13:40:50 +01:00
|
|
|
|
2014-12-22 19:36:34 +01:00
|
|
|
Package base58 provides an API for encoding and decoding to and from the
|
|
|
|
modified base58 encoding. It also provides an API to do Base58Check encoding,
|
2014-12-22 17:23:38 +01:00
|
|
|
as described [here](https://en.bitcoin.it/wiki/Base58Check_encoding).
|
2014-12-19 13:40:50 +01:00
|
|
|
|
2014-12-22 17:23:38 +01:00
|
|
|
A comprehensive suite of tests is provided to ensure proper functionality.
|
2014-12-19 13:40:50 +01:00
|
|
|
|
2014-12-22 18:26:02 +01:00
|
|
|
## Examples
|
|
|
|
|
2021-09-10 22:30:39 +02:00
|
|
|
* [Decode Example](http://godoc.org/github.com/lbryio/lbcutil/base58#example-Decode)
|
2014-12-22 18:26:02 +01:00
|
|
|
Demonstrates how to decode modified base58 encoded data.
|
2021-09-10 22:30:39 +02:00
|
|
|
* [Encode Example](http://godoc.org/github.com/lbryio/lbcutil/base58#example-Encode)
|
2014-12-22 18:26:02 +01:00
|
|
|
Demonstrates how to encode data using the modified base58 encoding scheme.
|
2021-09-10 22:30:39 +02:00
|
|
|
* [CheckDecode Example](http://godoc.org/github.com/lbryio/lbcutil/base58#example-CheckDecode)
|
2014-12-22 18:26:02 +01:00
|
|
|
Demonstrates how to decode Base58Check encoded data.
|
2021-09-10 22:30:39 +02:00
|
|
|
* [CheckEncode Example](http://godoc.org/github.com/lbryio/lbcutil/base58#example-CheckEncode)
|
|
|
|
Demonstrates how to encode data using the Base58Check encoding scheme.
|