package base36

Import Path
	github.com/multiformats/go-base36 (on go.dev)

Dependency Relation
	imports one package, and imported by one package

Involved Source Files Package base36 provides a reasonably fast implementation of a binary base36 codec.
Package-Level Functions (total 3)
DecodeString takes a base36 encoded string and returns a slice of the decoded bytes.
EncodeToStringLc encodes the given byte-buffer as base36 using [0-9a-z] as the digit-alphabet
EncodeToStringUc encodes the given byte-buffer as base36 using [0-9A-Z] as the digit-alphabet
Package-Level Constants (total 2)
const LcAlphabet = "0123456789abcdefghijklmnopqrstuvwxyz"
const UcAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"