Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for base64DecodeBytes (0.08 sec)

  1. internal/jwt/parser.go

    	}
    	borrow.ReturnAll()
    
    	// Signature is valid, lets validate the claims for
    	// other fields such as expiry etc.
    	return claims.Valid()
    }
    
    // base64DecodeBytes returns the bytes represented by the base64 string s.
    func base64DecodeBytes(b []byte, buf []byte) (int, error) {
    	return base64.RawURLEncoding.Decode(buf, b)
    }
    
    // ParseUnverifiedMapClaims - WARNING: Don't use this method unless you know what you're doing
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 17 16:45:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top