class Ronin::CLI::Commands::Decrypt

Decrypts data.

## Usage

ronin decrypt [options] [FILE ...]

## Options

-k, --key STRING                 The key String
-K, --key-file FILE              The key file
-c, --cipher NAME                The cipher to decrypt with. See --list-ciphers (Default: aes-256-cbc)
-P, --password PASSWORD          The password to decrypt with
-H md5|sha1|sha256|sha512,       The hash algorithm to use for the password (Default: sha256)
    --hash
    --iv STRING                  Sets the Initial Vector (IV) value of the cipher
    --padding NUM                Sets the padding of the decryption cipher
-b, --block-size NUM             The size in bytes to read data in (Default: 16384)
    --list-ciphers               List all available ciphers
-h, --help                       Print help information

## Arguments

[FILE ...]                       The file(s) to decrypt

Public Instance Methods

cipher() click to toggle source

Creates a new decryption cipher.

@return [Ronin::Support::Crypto::Cipher]

# File lib/ronin/cli/commands/decrypt.rb, line 60
def cipher
  super(direction: :decrypt)
end