README: update
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
# filecrypt-rs
|
# filecrypt-rs
|
||||||
|
|
||||||
Cli tool in Rust to encrypt and decrypt files with an Ascon-Keccak AEAD.
|
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
|
The PBKDF is not yet implemented and is just SHA256(password) for now.
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
@@ -10,9 +10,17 @@ The PBKDF is not yet implemented and is just SHA256(password) for now
|
|||||||
```bash
|
```bash
|
||||||
filecrypt-rs encrypt --input <FILE> --output <FILE> --password <PASSWORD>
|
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
|
### Decrypt a file
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
filecrypt-rs decrypt --input <FILE> --output <FILE> --password <PASSWORD>
|
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>
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user