crypto/x509.VerifyOptions.CurrentTime (field)

15 uses

	crypto/x509 (current package)
		verify.go#L207: 	CurrentTime time.Time
		verify.go#L455: 	now := opts.CurrentTime

	crypto/tls
		common.go#L1873: 			return opts.CurrentTime.Before(cert.NotBefore) || opts.CurrentTime.After(cert.NotAfter)
		handshake_client.go#L416: 			CurrentTime: c.config.time(),
		handshake_client.go#L1127: 				CurrentTime:   c.config.time(),
		handshake_client.go#L1150: 			CurrentTime:   c.config.time(),
		handshake_server.go#L527: 		CurrentTime: c.config.time(),
		handshake_server.go#L970: 			CurrentTime:   c.config.time(),
		handshake_server_tls13.go#L374: 			CurrentTime: c.config.time(),

	github.com/refraction-networking/utls
		handshake_client.go#L1152: 				CurrentTime: c.config.time(),
		handshake_client.go#L1159: 				opts.CurrentTime = certs[0].NotAfter
		handshake_client.go#L1188: 			CurrentTime: c.config.time(),
		handshake_client.go#L1194: 			opts.CurrentTime = certs[0].NotAfter
		handshake_server.go#L938: 			CurrentTime:   c.config.time(),