谁生成 HTTPS 会话密钥?
一些消息来源称网络浏览器生成会话密钥。现在,如果网络浏览器生成它,那么它很容易受到重放攻击。
还有一些消息来源说服务器生成其中的一部分,其余部分由客户端生成。 HTTPS 如何生成会话密钥?
Some sources says that the web browser generates the session key. Now if the web browser generates it then its vulnerable for replay attacks.
Also some sources says that the server generates a part of it and the rest the client generates. How does HTTPS generate session keys?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
客户端和服务器都会生成一个 Nonce,与其他数据一起使用来生成“Pre-Master Secret”。即使连接关闭后,也可以恢复会话并使用相同的“主密钥”。所有这些都包含在 HTTPS 的前几毫秒中连接。
Both the client and the server generate a Nonce which is used along with other data to generate the "Pre-Master Secret". Even after the connection has closed a session can be resumed and the same "Master Secret" is used. All of this is covered in The first few milliseconds of an HTTPS Connection.