(session)
| 885 | name: "certificateVerify", |
| 886 | msgType: certificate_verify, |
| 887 | calculateDigest(session) { |
| 888 | return handshakeDigestResult(session, |
| 889 | session.protocolVersion >= 0x303 ? SHA256 : |
| 890 | (session.chosenCipher.keyExchangeAlgorithm == RSA ? MD5 | SHA1 : SHA1)); |
| 891 | }, |
| 892 | unpacketize(session, s) { |
| 893 | session.traceProtocol(this); |
| 894 | const sig = s.readChunk(s.readChars(2)); |
nothing calls this directly
no test coverage detected