Skip to content

Commit

Permalink
Added examples to the ronin-decrypt man-page (issue #161).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Jun 8, 2023
1 parent fdd2dac commit 3be8f23
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions man/ronin-decrypt.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]>
Expand Down

0 comments on commit 3be8f23

Please sign in to comment.