是否有使用 MD5 哈希的协议?
我有一个程序,我对其进行逆向工程,以学习协议(并提高我的汇编技能)。我已经反转了整个协议,并且知道加密发生在哪里等等。该程序使用 CBC(链块密码),但数据包在发送之前会继续经过 MD5 哈希。
我知道这是不可能的(或者是吗?)我在谷歌上搜索了很长时间,但找不到任何信息。那么有谁知道这样的协议是否可行以及它的名称?
I have a program that I am reverse engineering for learning purposes about protocols (and to sharpen my assembly skills). I have reversed the whole protocol, and know where encryption takes place and all. The program uses an CBC(chain block cipher) but the packets keep going through an MD5 Hash before they are sent.
I know this is not possible(or is it?) I searched Google for a long time and couldn't find any information. So does anyone else know if a protocol like this is possible, and the name of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为一个非常明显且众所周知的示例,SSL/TLS 协议使用 MD5(但不限于 MD5)。
As a very obvious and well-known example, the SSL/TLS protocol uses MD5 (but not exclusively MD5).