Class: Sandal::Enc::A128GCM
Overview
The A128GCM encryption method.
Constant Summary collapse
- NAME =
The JWA name of the algorithm.
"A128GCM"
- KEY_SIZE =
The size of key that is required, in bits.
128
Instance Attribute Summary
Attributes inherited from AGCM
Instance Method Summary collapse
-
#initialize(alg) ⇒ A128GCM
constructor
Initialises a new instance.
Methods inherited from AGCM
Constructor Details
permalink #initialize(alg) ⇒ A128GCM
Initialises a new instance.
84 85 86 |
# File 'lib/sandal/enc/agcm.rb', line 84 def initialize(alg) super(NAME, KEY_SIZE, alg) end |