jwt/ruby-jwa

View on GitHub
lib/jwa/algorithms/content_encryption/a192_gcm.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'jwa/algorithms/content_encryption/aes_gcm'

module JWA
  module Algorithms
    module ContentEncryption
      class A192Gcm
        include AesGcm

        class << self
          def enc_name
            'A192GCM'
          end

          def key_length
            24
          end

          def cipher_name
            'aes-192-gcm'
          end
        end
      end
    end
  end
end