Sha256: 790a0aac51075b734f93a428aba30abbae5453907c36d5e940afbd26f93aea21
Contents?: true
Size: 961 Bytes
Versions: 2
Compression:
Stored size: 961 Bytes
Contents
# frozen_string_literal: true require 'openssl' begin require 'rbnacl' rescue LoadError raise if defined?(RbNaCl) end require_relative 'jwa/signing_algorithm' require_relative 'jwa/ecdsa' require_relative 'jwa/hmac' require_relative 'jwa/none' require_relative 'jwa/ps' require_relative 'jwa/rsa' require_relative 'jwa/unsupported' require_relative 'jwa/wrapper' if JWT.rbnacl? require_relative 'jwa/eddsa' end if JWT.rbnacl_6_or_greater? require_relative 'jwa/hmac_rbnacl' elsif JWT.rbnacl? require_relative 'jwa/hmac_rbnacl_fixed' end module JWT module JWA class << self def resolve(algorithm) return find(algorithm) if algorithm.is_a?(String) || algorithm.is_a?(Symbol) unless algorithm.is_a?(SigningAlgorithm) Deprecations.warning('Custom algorithms are required to include JWT::JWA::SigningAlgorithm') return Wrapper.new(algorithm) end algorithm end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jwt-2.9.1 | lib/jwt/jwa.rb |
jwt-2.9.0 | lib/jwt/jwa.rb |