TLS 1.3 support.

Well, at least -draft-16, and we don't quite parse all extensions yet
(not that there is that much left to parse).
This commit is contained in:
Johanna Amann 2016-10-07 12:23:21 -07:00
parent 14c119c7f9
commit fdef28ce7c
23 changed files with 449 additions and 83 deletions

View file

@ -41,6 +41,13 @@ void SSL_Analyzer::EndpointEOF(bool is_orig)
handshake_interp->FlowEOF(is_orig);
}
void SSL_Analyzer::StartEncryption()
{
interp->startEncryption(true);
interp->startEncryption(false);
interp->setEstablished();
}
void SSL_Analyzer::DeliverStream(int len, const u_char* data, bool orig)
{
tcp::TCP_ApplicationAnalyzer::DeliverStream(len, data, orig);