27 lines
591 B
Markdown
27 lines
591 B
Markdown
# filecrypt-rs
|
|
|
|
Cli tool in Rust to encrypt and decrypt files with an Ascon-Keccak AEAD.
|
|
The PBKDF is not yet implemented and is just SHA256(password) for now.
|
|
|
|
## Commands
|
|
|
|
### Encrypt a file
|
|
|
|
```bash
|
|
filecrypt-rs encrypt --input <FILE> --output <FILE> --password <PASSWORD>
|
|
```
|
|
Short arguments can also be used:
|
|
```bash
|
|
filecrypt-rs encrypt -i <FILE> -o <FILE> -p <PASSWORD>
|
|
```
|
|
|
|
### Decrypt a file
|
|
|
|
```bash
|
|
filecrypt-rs decrypt --input <FILE> --output <FILE> --password <PASSWORD>
|
|
```
|
|
Short arguments can also be used:
|
|
```bash
|
|
filecrypt-rs decrypt -i <FILE> -o <FILE> -p <PASSWORD>
|
|
```
|