Package Usage: go: github.com/tv42/zbase32
Package zbase32 implements the z-base-32 encoding as specified in
http://philzimmermann.com/docs/human-oriented-base-32-encoding.txt
Note that this is NOT RFC 4648, for that see encoding/base32.
z-base-32 is a variant that aims to be more human-friendly, and in
some circumstances shorter.
When the amount of input is not a full number of bytes, encoding
the data can lead to an unnecessary, non-information-carrying,
trailing character in the encoded data. This package provides
'Bits' variants of the functions that can avoid outputting this
unnecessary trailing character. For example, encoding a 20-bit
message:
Decoding such a message requires also using the 'Bits' variant
function.
3 versions
Latest release: over 3 years ago
149 dependent packages
View more package details: https://packages.ecosystem.code.gouv.fr/registries/proxy.golang.org/packages/github.com/tv42/zbase32