module JWT::Algos::Unsupported

Constants

SUPPORTED

Public Instance Methods

sign(*) click to toggle source
# File lib/jwt/algos/unsupported.rb, line 8
def sign(*)
  raise NotImplementedError, 'Unsupported signing method'
end
verify(*) click to toggle source
# File lib/jwt/algos/unsupported.rb, line 12
def verify(*)
  raise JWT::VerificationError, 'Algorithm not supported'
end