man/ronin-decrypt.1.md in ronin-2.0.1 vs man/ronin-decrypt.1.md in ronin-2.0.2

- old
+ new

@@ -45,9 +45,27 @@ List the supported ciphers and exits. `-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 + +Specifying a custom IV (initialization vector): + + $ ronin decrypt --cipher aes-256-cbc --key "..." --iv "..." encrypted.bin + ## AUTHOR Postmodern <postmodern.mod3@gmail.com> ## SEE ALSO