mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-21 17:07:04 +00:00
Add TLS Version 1.3 Handling
Signed-off-by: Peter Kovář <peter.kovar@reflexion.tv>
This commit is contained in:
parent
f24cf1476c
commit
5c20a7401b
1 changed files with 2 additions and 0 deletions
|
@ -555,6 +555,7 @@ int ssl_restore_session(ssl_obj *ssl, ssl_decoder *d) {
|
||||||
case TLSV1_VERSION:
|
case TLSV1_VERSION:
|
||||||
case TLSV11_VERSION:
|
case TLSV11_VERSION:
|
||||||
case TLSV12_VERSION:
|
case TLSV12_VERSION:
|
||||||
|
case TLSV13_VERSION:
|
||||||
if((r = ssl_generate_keying_material(ssl, d)))
|
if((r = ssl_generate_keying_material(ssl, d)))
|
||||||
ABORT(r);
|
ABORT(r);
|
||||||
break;
|
break;
|
||||||
|
@ -655,6 +656,7 @@ int ssl_process_client_key_exchange(ssl_obj *ssl,
|
||||||
case TLSV1_VERSION:
|
case TLSV1_VERSION:
|
||||||
case TLSV11_VERSION:
|
case TLSV11_VERSION:
|
||||||
case TLSV12_VERSION:
|
case TLSV12_VERSION:
|
||||||
|
case TLSV13_VERSION:
|
||||||
if((r = ssl_generate_keying_material(ssl, d)))
|
if((r = ssl_generate_keying_material(ssl, d)))
|
||||||
ABORT(r);
|
ABORT(r);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue