Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        

# Ether

```
USAGE:
ether ARGUMENT OPTIONS

DESCRIPTION:
Symmetric-key encryption and decryption utility built on Blowfish.

EXAMPLE:
ether enc -i "Text to encrypt." -k foobar

ARGUMENT:
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/`.