-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added examples to the
ronin-decrypt
man-page (issue #161).
- Loading branch information
1 parent
fdd2dac
commit 3be8f23
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,20 @@ Encrypts data. | |
`-h`, `--help` | ||
Print help information. | ||
|
||
## EXAMPLES | ||
|
||
Decrypt a file using AES-256 (CBC mode) with a password: | ||
|
||
$ ronin decrypt --cipher aes-256-cbc --password "..." encrypted.bin | ||
|
||
Decrypt a file using a raw key string: | ||
|
||
$ ronin decrypt --cipher aes-256-cbc --key "12345abcdef..." encrypted.bin | ||
|
||
Decrypt a file using a raw key read from a file: | ||
|
||
$ ronin decrypt --cipher aes-256-cbc --key-file key.bin encrypted.bin | ||
|
||
## AUTHOR | ||
|
||
Postmodern <[email protected]> | ||
|