module JWA::Algorithms::ContentEncryption::AesGcm::ClassMethods

Public Instance Methods

available?() click to toggle source
# File lib/jwa/algorithms/content_encryption/aes_gcm.rb, line 54
def available?
  Cipher.for(cipher_name)
  true
rescue NotImplementedError
  false
end