class Ronin::CLI::Commands::Encrypt
Encrypts data.
## Usage
ronin encrypt [options] [FILE ...]
## Options
-k, --key STRING The key String -K, --key-file FILE The key file -c, --cipher NAME The cipher to encrypt with. See --list-ciphers (Default: aes-256-cbc) -P, --password PASSWORD The password to encrypt 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 encryption 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 encrypt
Public Instance Methods
cipher()
click to toggle source
Creates a new encryption cipher.
@return [Ronin::Support::Crypto::Cipher]
Calls superclass method
Ronin::CLI::Commands::CipherCommand#cipher
# File lib/ronin/cli/commands/encrypt.rb, line 60 def cipher super(direction: :encrypt) end