jwt/ruby-jwe

View on GitHub
lib/jwe/alg/a256_kw.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'jwe/alg/aes_kw'

module JWE
  module Alg
    # AES-256 Key Wrapping algorithm
    class A256kw
      include AesKw

      def cipher_name
        'AES-256-ECB'
      end
    end
  end
end