https://github.com/jcbritobr/sbox
SBOX is a cli application that implements the secretbox seal and open functions to encrypt documents.
https://github.com/jcbritobr/sbox
cryptography symmetric-encryption tool
Last synced: about 2 months ago
JSON representation
SBOX is a cli application that implements the secretbox seal and open functions to encrypt documents.
- Host: GitHub
- URL: https://github.com/jcbritobr/sbox
- Owner: jcbritobr
- License: mit
- Created: 2022-11-10T12:56:32.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T13:14:44.000Z (over 2 years ago)
- Last Synced: 2024-04-17T19:26:18.334Z (about 1 year ago)
- Topics: cryptography, symmetric-encryption, tool
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# SBOX
SBOX is a cli application that implements the **secretbox** seal and open functions to encrypt documents.* **Build** - Execute de following command in root folder;
```
$ go build -v -ldflags "-s -w"
```* **Use**
```
$ sbox -h
NAME:
sbox - A symmetric secret box tool for seal and open documentsUSAGE:
sbox [global options] command [command options] [arguments...]COMMANDS:
open, o open a sealed message
seal, s seal an open message
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--help, -h show help (default: false)$ cat sample.txt | sbox seal -k <32 byte key> >> sealedfile
```It can be used with [keygen](https://github.com/jcbritobr/keygen) to generate keys.