golang.org/x/oauth2/jws.ClaimSet.Iat (field)

6 uses

	golang.org/x/oauth2/jws (current package)
		jws.go#L39: 	Iat   int64  `json:"iat"`             // the time the assertion was issued (seconds since Unix epoch)
		jws.go#L59: 	if c.Iat == 0 {
		jws.go#L60: 		c.Iat = now.Unix()
		jws.go#L65: 	if c.Exp < c.Iat {
		jws.go#L66: 		return "", fmt.Errorf("jws: invalid Exp = %v; must be later than Iat = %v", c.Exp, c.Iat)

	golang.org/x/oauth2/google
		jwt.go#L61: 		Iat: iat.Unix(),