Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for base64DecodeBytes (0.18 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
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue May 09 07:53:08 GMT 2023
    - 13.9K bytes
    - Viewed (0)
Back to top