| 1836 | } |
| 1837 | |
| 1838 | type certificateVerifyMsg struct { |
| 1839 | hasSignatureAlgorithm bool // format change introduced in TLS 1.2 |
| 1840 | signatureAlgorithm SignatureScheme |
| 1841 | signature []byte |
| 1842 | } |
| 1843 | |
| 1844 | func (m *certificateVerifyMsg) marshal() ([]byte, error) { |
| 1845 | var b cryptobyte.Builder |
nothing calls this directly
no outgoing calls
no test coverage detected