require 'openssl' require 'url_safe_base64' require 'json' module JSON class JWT < Hash attr_accessor :header, :signature class Exception < StandardError; end class InvalidFormat < Exception; end class VerificationFailed < Exception; end def initialize(claims) @header = { :typ => :JWT, :alg => :none } [:exp, :nbf, :iat].each do |key| claims[key] = claims[key].to_i if claims[key] end replace claims end def sign(private_key_or_secret, algorithm = :HS256) header[:alg] = algorithm JWS.new(self).sign!(private_key_or_secret) end def verify(signature_base_string, signature = '', prublic_key_or_secret = nil) case header[:alg] when :none signature == '' or raise VerificationFailed else JWS.new(self).verify(signature_base_string, signature, prublic_key_or_secret) end end def to_s [ header.to_json, self.to_json, signature ].collect do |segment| UrlSafeBase64.encode64 segment.to_s end.join('.') end class << self def decode(jwt_string, public_key_or_secret = nil) raise InvalidFormat.new('Invalid JWT Format. JWT should include 2 dots.') unless jwt_string.count('.') == 2 header, claims, signature = jwt_string.split('.').collect do |segment| UrlSafeBase64.decode64 segment.to_s end jwt = new JSON.parse(claims).with_indifferent_access jwt.header = JSON.parse(header).with_indifferent_access jwt.verify [header, claims].join('.'), signature, public_key_or_secret jwt rescue JSON::ParserError raise InvalidFormat.new("Invalid JSON Format") end end private def replace(hash_or_jwt) super hash_or_jwt if hash_or_jwt.is_a? JSON::JWT self.header = hash_or_jwt.header self.signature = hash_or_jwt.signature end self end end end require 'json/jws' require 'json/jwe'