Class: Ronin::Support::Crypto::Cipher::AES256
- Inherits:
-
AES
- Object
- OpenSSL::Cipher
- Ronin::Support::Crypto::Cipher
- AES
- Ronin::Support::Crypto::Cipher::AES256
- Defined in:
- lib/ronin/support/crypto/cipher/aes256.rb
Overview
The AES256 cipher.
Instance Attribute Summary
Attributes inherited from AES
Class Method Summary collapse
-
.supported ⇒ Array<String>
The list of supported AES 256bit ciphers.
Instance Method Summary collapse
-
#initialize(hash: :sha256, **kwargs) ⇒ AES256
constructor
Initializes the AES 256bit cipher.
Methods inherited from Ronin::Support::Crypto::Cipher
Constructor Details
#initialize(hash: :sha256, **kwargs) ⇒ AES256
Initializes the AES 256bit cipher.
39 40 41 |
# File 'lib/ronin/support/crypto/cipher/aes256.rb', line 39 def initialize(hash: :sha256, **kwargs) super(key_size: 256, hash: hash, **kwargs) end |