Module: JWT::JWA::SigningAlgorithm
- Included in:
- Ecdsa, Eddsa, Hmac, HmacRbNaCl, HmacRbNaClFixed, None, Ps, Rsa, Unsupported, Wrapper
- Defined in:
- lib/jwt/jwa/signing_algorithm.rb
Defined Under Namespace
Modules: ClassMethods
Instance Attribute Summary collapse
-
#alg ⇒ Object
readonly
Returns the value of attribute alg.
Class Method Summary collapse
Instance Method Summary collapse
- #header ⇒ Object
- #raise_sign_error!(message) ⇒ Object
- #raise_verify_error!(message) ⇒ Object
- #sign ⇒ Object
- #valid_alg?(alg_to_check) ⇒ Boolean
- #verify ⇒ Object
Instance Attribute Details
#alg ⇒ Object (readonly)
Returns the value of attribute alg.
16 17 18 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 16 def alg @alg end |
Class Method Details
.included(klass) ⇒ Object
12 13 14 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 12 def self.included(klass) klass.extend(ClassMethods) end |
Instance Method Details
#header ⇒ Object
22 23 24 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 22 def header(*) { 'alg' => alg } end |
#raise_sign_error!(message) ⇒ Object
38 39 40 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 38 def raise_sign_error!() raise(EncodeError.new().tap { |e| e.set_backtrace(caller(1)) }) end |
#raise_verify_error!(message) ⇒ Object
34 35 36 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 34 def raise_verify_error!() raise(DecodeError.new().tap { |e| e.set_backtrace(caller(1)) }) end |
#sign ⇒ Object
26 27 28 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 26 def sign(*) raise_sign_error!('Algorithm implementation is missing the sign method') end |
#valid_alg?(alg_to_check) ⇒ Boolean
18 19 20 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 18 def valid_alg?(alg_to_check) alg&.casecmp(alg_to_check)&.zero? == true end |
#verify ⇒ Object
30 31 32 |
# File 'lib/jwt/jwa/signing_algorithm.rb', line 30 def verify(*) raise_verify_error!('Algorithm implementation is missing the verify method') end |