An open API service indexing awesome lists of open source software.

https://github.com/shavit/zig-base32

Base32 encoder and decoder
https://github.com/shavit/zig-base32

base32 cli zig

Last synced: over 1 year ago
JSON representation

Base32 encoder and decoder

Awesome Lists containing this project

README

          

# Zig Base32

> Base32 library

## Usage

1. Encode
```
$ zbase32 Hello
JBSWY3DP
```

2. Decode
```
$ zbase32 -d JBSWY3DP
Hello
```