crypto/tls.serverHandshakeState.cert (field)

10 uses

	crypto/tls (current package)
		handshake_server.go#L36: 	cert         *Certificate
		handshake_server.go#L223: 	hs.cert, err = c.config.getCertificate(clientHelloInfo(c, hs.clientHello))
		handshake_server.go#L233: 		hs.hello.scts = hs.cert.SignedCertificateTimestamps
		handshake_server.go#L247: 	if priv, ok := hs.cert.PrivateKey.(crypto.Signer); ok {
		handshake_server.go#L260: 	if priv, ok := hs.cert.PrivateKey.(crypto.Decrypter); ok {
		handshake_server.go#L460: 	if hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0 {
		handshake_server.go#L480: 	certMsg.certificates = hs.cert.Certificate
		handshake_server.go#L488: 		certStatus.response = hs.cert.OCSPStaple
		handshake_server.go#L496: 	skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
		handshake_server.go#L591: 	preMasterSecret, err := keyAgreement.processClientKeyExchange(c.config, hs.cert, ckx, c.vers)