type crypto/tls.certificateMsg

8 uses

	crypto/tls (current package)
		conn.go#L1043: 			m = new(certificateMsg)
		handshake_client.go#L465: 	certMsg, ok := msg.(*certificateMsg)
		handshake_client.go#L566: 		certMsg = new(certificateMsg)
		handshake_messages.go#L1203: type certificateMsg struct {
		handshake_messages.go#L1208: func (m *certificateMsg) marshal() (x []byte) {
		handshake_messages.go#L1243: func (m *certificateMsg) unmarshal(data []byte) bool {
		handshake_server.go#L479: 	certMsg := new(certificateMsg)
		handshake_server.go#L555: 		certMsg, ok := msg.(*certificateMsg)