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