OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / tendermint / go-wire / data / base58 / doc.go
1 // Copyright (c) 2013-2014 Conformal Systems LLC.
2 // Use of this source code is governed by an ISC
3 // license that can be found in the LICENSE file.
4
5 /*
6 Package base58 provides base58-check encoding.
7 The alphabet is modifyiable for
8
9 Base58 Usage
10
11 To decode a base58 string:
12
13  rawData := base58.Base58Decode(encodedData)
14
15 Similarly, to encode the same data:
16
17  encodedData := base58.Base58Encode(rawData)
18
19 */
20 package base58