| 1702 | } |
| 1703 | |
| 1704 | type certificateRequestMsg struct { |
| 1705 | // hasSignatureAlgorithm indicates whether this message includes a list of |
| 1706 | // supported signature algorithms. This change was introduced with TLS 1.2. |
| 1707 | hasSignatureAlgorithm bool |
| 1708 | |
| 1709 | certificateTypes []byte |
| 1710 | supportedSignatureAlgorithms []SignatureScheme |
| 1711 | certificateAuthorities [][]byte |
| 1712 | } |
| 1713 | |
| 1714 | func (m *certificateRequestMsg) marshal() ([]byte, error) { |
| 1715 | // See RFC 4346, Section 7.4.4. |
nothing calls this directly
no outgoing calls
no test coverage detected