Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JKJS
即使数据包的版本为 0x0301 (TLS v1),wireshark 也会在协议列中显示 SSL 而不是 TLSv1。
我自己已经构建了一个 TLS 握手包。
可能是什么原因?
这是因为它大致相同。SSLv3 和 TLS 1.x 实际上是相同的协议,但版本号不同。SSLv3 的版本号是{ 3, 0 },它是{ 3, 1 }TLS 1.0 的。
{ 3, 0 }
{ 3, 1 }
(SSLv2 会有更多不同的数据包。)