| 1718 | } |
| 1719 | |
| 1720 | type certificateVerifyMsg struct { |
| 1721 | raw []byte |
| 1722 | hasSignatureAlgorithm bool // format change introduced in TLS 1.2 |
| 1723 | signatureAlgorithm SignatureScheme |
| 1724 | signature []byte |
| 1725 | } |
| 1726 | |
| 1727 | func (m *certificateVerifyMsg) marshal() (x []byte) { |
| 1728 | if m.raw != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected