| 1576 | } |
| 1577 | |
| 1578 | type certificateRequestMsg struct { |
| 1579 | raw []byte |
| 1580 | // hasSignatureAlgorithm indicates whether this message includes a list of |
| 1581 | // supported signature algorithms. This change was introduced with TLS 1.2. |
| 1582 | hasSignatureAlgorithm bool |
| 1583 | |
| 1584 | certificateTypes []byte |
| 1585 | supportedSignatureAlgorithms []SignatureScheme |
| 1586 | certificateAuthorities [][]byte |
| 1587 | } |
| 1588 | |
| 1589 | func (m *certificateRequestMsg) marshal() (x []byte) { |
| 1590 | if m.raw != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected