SkillAgentSearch skills...

Zbase32

z-base-32 - human-oriented base-32 encoding

Install / Use

/learn @corvus-ch/Zbase32
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

z-base-32 - human-oriented base-32 encoding

Build Status Test Coverage Documentation

Golang pacakge which implements base32 encoding of binary data according to http://philzimmermann.com/docs/human-oriented-base-32-encoding.txt.

Note: this is NOT RFC4648 or RFC3548. If you need to be compatible to one of those RFCs, use encoding/base32.

This package:

  • follows the example of encoding/base32;
  • supports encoding and decoding of byte arrays;
  • supports encoding and decoding using io.Writer and io.Reader interfaces.
  • provides a shell command which behaves similar to the BSD base64 command.

Based on the work from github.com/tv42/zbase32 by Tommi Virtanen.

Command line utilities

Included is a simple command-line utility for encoding/decoding data.

Example:

$ echo "Hello world" | zbase32
jb1sa5dxrb5s6huccofy
$ echo -n jb1sa5dxrb5s6huccofy | zbase32 --decode 
Hello world
$ printf '\x01binary!!!1\x00' | zbase32
yftg15ubqjh1nejbgryy
$ echo -n yftg15ubqjh1nejbgryy | zbase32 --decode | hexdump -C
00000000  01 62 69 6e 61 72 79 21  21 21 31 00              |.binary!!!1.|
0000000c

Contributing and license

This library is licences under MIT. For information about how to contribute, see CONTRIBUTING

Related Skills

View on GitHub
GitHub Stars5
CategoryDevelopment
Updated3y ago
Forks2

Languages

Go

Security Score

75/100

Audited on Jun 26, 2022

No findings