Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aead/ee
Encrypt Everything - CLI for encrypting everything securely
https://github.com/aead/ee
cli cryptography encryption golang
Last synced: about 1 month ago
JSON representation
Encrypt Everything - CLI for encrypting everything securely
- Host: GitHub
- URL: https://github.com/aead/ee
- Owner: aead
- License: mit
- Created: 2017-08-23T02:10:43.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-07T00:51:50.000Z (about 7 years ago)
- Last Synced: 2024-06-20T09:17:38.159Z (5 months ago)
- Topics: cli, cryptography, encryption, golang
- Language: Go
- Size: 5.86 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EE - Encrypt Everything
Encrypt everything securely.
**This tool is currently not more than a demo tool - do not use it in production!**
### Installation
**Install:** `go get -u github.com/aead/ee`
### Usage
```
Usage of ee:
-dec string
Decrypt data with the provided password
-dst string
The destination file ee will try to write to - default is STDOUT
-enc string
Encrypt data with the provided password
-gen string
Generate and print the derived key from the provided password
-salt string
The salt used to derive a key from the password
-src string
The source file ee will try to read from - default is STDINExamples of ee:
Derive and print encryption key: ee -gen your-password -salt your-salt
Encrypt and print file : ee -enc your-password -salt your-salt -src /path/to/your/file
Encrypted file copy : ee -enc your-password -salt your-salt -src /path/to/your/src -dst /path/to/your/dst
Decrypted file copy with pipes : cat /path/to/your/src | ee -dec your-password -salt your-salt > /path/to/your/dst
```