Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solidiquis/ether
Symmetric key encryption command-line utility.
https://github.com/solidiquis/ether
command-line command-line-tool cryptography rust
Last synced: 5 days ago
JSON representation
Symmetric key encryption command-line utility.
- Host: GitHub
- URL: https://github.com/solidiquis/ether
- Owner: solidiquis
- License: mit
- Created: 2022-07-24T01:38:16.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-29T21:18:40.000Z (over 2 years ago)
- Last Synced: 2023-03-07T23:18:53.585Z (over 1 year ago)
- Topics: command-line, command-line-tool, cryptography, rust
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ether
```
USAGE:
ether ARGUMENT OPTIONSDESCRIPTION:
Symmetric-key encryption and decryption utility built on Blowfish.EXAMPLE:
ether enc -i "Text to encrypt." -k foobarARGUMENT:
enc | dec Specify whether to encrypt or decrypt given text and key.OPTIONS:
-i Input text to encrypt or decrypt.
-I Path to file containing text to encrypt or decrypt.
-k Cryptographic key to encrypt or decrypt text. Valid lengths: [4, 56] exclusive.
-K Path to file containing cryptographic key. Valid lengths: [4, 56] exclusive.
```## Installation
1. Make sure you have [Rust and its toolchain](https://www.rust-lang.org/tools/install) installed.
2. `$ cargo install --git https://github.com/solidiquis/ether`
3. The executable should then be located in `$HOME/.cargo/bin/`.