Method: Sandal::Claims#validate_nbf
- Defined in:
- lib/sandal/claims.rb
#validate_nbf(max_clock_skew = 0) ⇒ void
This method returns an undefined value.
Validates the not-before claim.
41 42 43 44 45 46 47 48 |
# File 'lib/sandal/claims.rb', line 41 def validate_nbf(max_clock_skew = 0) max_clock_skew ||= 0 nbf = time_claim("nbf") if nbf && nbf > (Time.now + max_clock_skew) raise Sandal::ClaimError, "The token is not valid yet." end end |