Sha256: d2fa6abc5611e3dc687058c8a4c0c33a58a8ca8252407603993b1118370d936f
Contents?: true
Size: 372 Bytes
Versions: 3
Compression:
Stored size: 372 Bytes
Contents
# frozen_string_literal: true module JWT module DefaultOptions DEFAULT_OPTIONS = { verify_expiration: true, verify_not_before: true, verify_iss: false, verify_iat: false, verify_jti: false, verify_aud: false, verify_sub: false, leeway: 0, algorithms: ['HS256'], required_claims: [] }.freeze end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jwt-2.4.1 | lib/jwt/default_options.rb |
jwt-2.4.0 | lib/jwt/default_options.rb |
jwt-2.4.0.beta1 | lib/jwt/default_options.rb |