Class: Sandal::Enc::A128GCM
Overview
The AES-128-GCM encryption algorithm.
Instance Attribute Summary
Attributes inherited from AGCM
Instance Method Summary collapse
-
#initialize(key) ⇒ A128GCM
constructor
A new instance of A128GCM.
Methods inherited from AGCM
Constructor Details
#initialize(key) ⇒ A128GCM
Returns a new instance of A128GCM.
53 54 55 |
# File 'lib/sandal/enc/agcm.rb', line 53 def initialize(key) super(128, key) end |