Documentation ¶
Overview ¶
Implement Crockford's base32 encoding ref: https://www.crockford.com/base32.html
Index ¶
Constants ¶
View Source
const Alphabet = "0123456789ABCDEFGHJKMNPQRSTVWXYZ"
Alphabet of base32 encoding
Variables ¶
View Source
var Separators = []rune{' ', '-'}
Separators permitted in base32-encoded string, they will be removed in normalization.
Functions ¶
Types ¶
type InvalidBase32Character ¶
type InvalidBase32Character rune
Input string contains invalid base32 character
func (InvalidBase32Character) Error ¶
func (err InvalidBase32Character) Error() string
Click to show internal directories.
Click to hide internal directories.