https://github.com/pumpkinseed/bob64
Interactive cli base64 encoder
https://github.com/pumpkinseed/bob64
Last synced: 4 months ago
JSON representation
Interactive cli base64 encoder
- Host: GitHub
- URL: https://github.com/pumpkinseed/bob64
- Owner: PumpkinSeed
- License: mit
- Created: 2020-03-08T08:34:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-08T13:30:59.000Z (over 5 years ago)
- Last Synced: 2025-06-08T04:46:11.590Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bob64
Interactive cli base64 encoder/decoder### Installation
```
go install github.com/PumpkinSeed/bob64
```### Usage
**Encoder**
```
$ bob64
bob64 - Interactive base64 encoder
To leave the interactive mode type 'exit'
---
-> test123
dGVzdDEyMw==
-> exit
Bye :)
```**Decoder**
```
$ bob64 -d
bob64 - Interactive base64 decoder
To leave the interactive mode type 'exit'
---
-> dGVzdDEyMw==
test123
-> exit
Bye :)
```