doc.go 422 Bytes
Newer Older
Jeromy's avatar
Jeromy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2013-2014 Conformal Systems LLC.
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.

/*
Package base58 provides base58-check encoding.
The alphabet is modifyiable for

Base58 Usage

To decode a base58 string:

 rawData := base58.Base58Decode(encodedData)

Similarly, to encode the same data:

 encodedData := base58.Base58Encode(rawData)

*/
package base58