Class: Sandal::Enc::A128CBC_HS256
- Defined in:
- lib/sandal/enc/acbc_hs.rb
Overview
The AES-128-CBC+HMAC-SHA256 encryption algorithm.
Instance Attribute Summary
Attributes inherited from ACBC_HS
Instance Method Summary collapse
-
#initialize(key) ⇒ A128CBC_HS256
constructor
A new instance of A128CBC_HS256.
Methods inherited from ACBC_HS
Constructor Details
#initialize(key) ⇒ A128CBC_HS256
Returns a new instance of A128CBC_HS256.
94 95 96 |
# File 'lib/sandal/enc/acbc_hs.rb', line 94 def initialize(key) super(128, 256, key) end |