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