Lines Matching refs:TLS
7 "# TLS handshake overview\n",
8 "This is the standard, modern TLS 1.2 handshake:\n",
10 "<img src=\"images/handshake_tls12.png\" alt=\"Handshake TLS 1.2\" width=\"400\"/>"
21 …"# We're going to parse several successive records from the passive listening of a standard TLS ha…
40 "record1 = TLS(open('raw_data/tls_session_protected/01_cli.raw').read())\n",
72 "record2 = TLS(open('raw_data/tls_session_protected/02_srv.raw').read())\n",
91 "record3 = TLS(open('raw_data/tls_session_protected/03_srv.raw').read())\n",
142 "# Here the server sent three TLS records in the same TCP segment\n",
143 "record4 = TLS(open('raw_data/tls_session_protected/04_srv.raw').read())\n",
184 "record5 = TLS(record5_str)\n",
197 "record5 = TLS(record5_str, tls_session=record2.tls_session.mirror())\n",
217 "record6 = TLS(record6_str, tls_session=record5.tls_session.mirror())\n",
237 "record7 = TLS(record7_str, tls_session=record6.tls_session.mirror())\n",