module JWT::JWA::Unsupported

Public Class Methods

sign(*) click to toggle source
# File lib/jwt/jwa/unsupported.rb, line 9
def sign(*)
  raise_sign_error!('Unsupported signing method')
end
verify(*) click to toggle source
# File lib/jwt/jwa/unsupported.rb, line 13
def verify(*)
  raise JWT::VerificationError, 'Algorithm not supported'
end