Documentation ¶
Overview ¶
Package basex provides fast base encoding / decoding of any given alphabet using bitcoin style leading zero compression. It is a GO port of https://github.com/cryptocoinjs/base-x
It has been copied from github.com/eknkc/basex to avoid that external dependency, and updated somewhat for efficiency.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Encoding ¶
type Encoding struct {
// contains filtered or unexported fields
}
Encoding is a custom base encoding defined by an alphabet. It should bre created using NewEncoding function
func NewEncoding ¶
NewEncoding returns a custom base encoder defined by the alphabet string. The alphabet should contain non-repeating characters. It does not allow non-ASCII characters in the alphabet. Ordering is important. Example alphabets:
- base2: 01
- base16: 0123456789abcdef
- base32: 0123456789ABCDEFGHJKMNPQRSTVWXYZ
- base62: 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ