Sha256: 24db534a902eefde0f6738cb831f79dca780924e69836527663e82376260aa55
Contents?: true
Size: 306 Bytes
Versions: 2
Compression:
Stored size: 306 Bytes
Contents
module JWT module Algos module Unsupported module_function SUPPORTED = [].freeze def sign(*) raise NotImplementedError, 'Unsupported signing method' end def verify(*) raise JWT::VerificationError, 'Algorithm not supported' end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jwt-2.3.0 | lib/jwt/algos/unsupported.rb |
jwt-2.2.3 | lib/jwt/algos/unsupported.rb |