https://github.com/picatz/b32
✈️ base32 command-line utlity
https://github.com/picatz/b32
base32 command-line decoder encoder golang
Last synced: 7 months ago
JSON representation
✈️ base32 command-line utlity
- Host: GitHub
- URL: https://github.com/picatz/b32
- Owner: picatz
- Created: 2018-04-13T15:14:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-13T15:17:37.000Z (over 7 years ago)
- Last Synced: 2025-01-06T05:42:57.632Z (9 months ago)
- Topics: base32, command-line, decoder, encoder, golang
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# b32
> base32 command-line utlity# Installation
```shell
$ go get github.com/picatz/b32
```#### Updating Version
```shell
$ go get -u github.com/picatz/b32
```# Usage
After installing, you can run the command `b32` to see the following help menu:
```
NAME:
b32 - base32 encoder and decoderUSAGE:
b32 [global options] command [command options] [arguments...]VERSION:
1.0.0COMMANDS:
encode encode the given string(s) as base32
decode decode the given string(s) as base32
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--help, -h show help
--version, -v print the version
```To encode a given string with base32 encoding, you can use the `encode` flag:
```shell
$ b32 encode "Example String"
IV4GC3LQNRSSAU3UOJUW4ZY=
```To decode a given string that been base32 encoded there's the `decode` flag:
```shell
$ b32 decode "IV4GC3LQNRSSAU3UOJUW4ZY="
Example String
```