-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Algos module renamed to JWA - Standard HMAC algorithms provided explicitly by OpenSSL (#550) - Prepare to remove support for the HS512256 algorithm provided by RbNaCl (#549)
- Loading branch information
Showing
24 changed files
with
225 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'openssl' | ||
|
||
begin | ||
require 'rbnacl' | ||
rescue LoadError | ||
raise if defined?(RbNaCl) | ||
end | ||
|
||
require_relative 'jwa/hmac' | ||
require_relative 'jwa/eddsa' | ||
require_relative 'jwa/ecdsa' | ||
require_relative 'jwa/rsa' | ||
require_relative 'jwa/ps' | ||
require_relative 'jwa/none' | ||
require_relative 'jwa/unsupported' | ||
require_relative 'jwa/wrapper' | ||
|
||
module JWT | ||
module JWA | ||
ALGOS = [Hmac, Ecdsa, Rsa, Eddsa, Ps, None, Unsupported].tap do |l| | ||
if ::JWT.rbnacl_6_or_greater? | ||
require_relative 'jwa/hmac_rbnacl' | ||
l << Algos::HmacRbNaCl | ||
elsif ::JWT.rbnacl? | ||
require_relative 'jwa/hmac_rbnacl_fixed' | ||
l << Algos::HmacRbNaClFixed | ||
end | ||
end.freeze | ||
|
||
class << self | ||
def find(algorithm) | ||
indexed[algorithm&.downcase] | ||
end | ||
|
||
def create(algorithm) | ||
return algorithm if JWA.implementation?(algorithm) | ||
|
||
Wrapper.new(*find(algorithm)) | ||
end | ||
|
||
def implementation?(algorithm) | ||
(algorithm.respond_to?(:valid_alg?) && algorithm.respond_to?(:verify)) || | ||
(algorithm.respond_to?(:alg) && algorithm.respond_to?(:sign)) | ||
end | ||
|
||
private | ||
|
||
def indexed | ||
@indexed ||= begin | ||
fallback = [nil, Unsupported] | ||
ALGOS.each_with_object(Hash.new(fallback)) do |cls, hash| | ||
cls.const_get(:SUPPORTED).each do |alg| | ||
hash[alg.downcase] = [alg, cls] | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
module JWT | ||
module Algos | ||
module JWA | ||
module Ecdsa | ||
module_function | ||
|
||
|
Oops, something went wrong.