Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefins/wdcrypt
πA CLI to encrypt all the files and folder in your current working directory.
https://github.com/stefins/wdcrypt
cli encryption fernet privacy rust
Last synced: 2 months ago
JSON representation
πA CLI to encrypt all the files and folder in your current working directory.
- Host: GitHub
- URL: https://github.com/stefins/wdcrypt
- Owner: stefins
- License: mit
- Created: 2020-07-24T10:45:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T15:55:09.000Z (9 months ago)
- Last Synced: 2024-04-14T05:58:27.083Z (9 months ago)
- Topics: cli, encryption, fernet, privacy, rust
- Language: Rust
- Homepage:
- Size: 201 KB
- Stars: 35
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-repositories - stefins/wdcrypt - πA CLI to encrypt all the files and folder in your current working directory. (Rust)
README
# wdcrypt-rs
[![Rust](https://github.com/stefins/wdcrypt/actions/workflows/rust.yml/badge.svg)](https://github.com/stefins/wdcrypt/actions/workflows/rust.yml)
[![releaser](https://github.com/stefins/wdcrypt/actions/workflows/release.yml/badge.svg)](https://github.com/stefins/wdcrypt/actions/workflows/release.yml)A Rust CLI to encrypt the current working directory with Fernet encryption.
Fernet guarantees that a message encrypted using it cannot be manipulated or read without the key. Fernet is an implementation of symmetric (also known as βsecret keyβ) authenticated cryptography.
Find more about Fernet [here](https://cryptography.io/en/latest/fernet/)## Demo
[![Demo](https://user-images.githubusercontent.com/28928206/211104078-f5fbc7c6-a9b6-47de-85ed-26ac9ef74f4b.mp4)](https://user-images.githubusercontent.com/28928206/211104078-f5fbc7c6-a9b6-47de-85ed-26ac9ef74f4b.mp4)## Installation
Make sure you have `cargo` in your $PATH
```bash
$ cargo install wdcrypt
```## Usage
```
$ wdcrypt --help
Encrypt your current working directoryUsage: wdcrypt [COMMAND]
Commands:
encrypt, -e, --encrypt Encrypt the current working directory
decrypt, -d, --decrypt Decrypt the current working directory
help Print this message or the help of the given subcommand(s)Options:
-h, --help Print help information
-V, --version Print version information
```## Building for `WASM` and running it in `wasmtime`
```bash
$ cargo build --release --target wasm32-wasi
$ cd target/wasm32-wasi/release
$ mkdir demo && cd demo
$ wasmtime run --dir=. ../wdcrypt.wasm -- --help
```## License
MIT