MD5功能是如何工作的?

发布于 2024-12-06 18:36:18 字数 302 浏览 0 评论 0原文

我想为 SuperFastHash 实现一个与 openssl 的 MD5 函数兼容的函数。 MD5 在 md5.h 中声明为:

unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md);

但我在标头和源代码中找不到它的定义。

那么它到底是如何运作的呢?是函数而不是算法。

I'd like to implent a function for SuperFastHash that is compatible so openssl's MD5 function.
MD5 is declared in md5.h as:

unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md);

But I can't find it's definition in the headers and the sourcecode.

So how does it work exactly? The function not the algorithm.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫卆 2024-12-13 18:36:18

除了给您的答案之外,我想指出,如果可以在 openssl tarball 中找到 md5,则 openssl 实现可以从这里获取 http://www.openssl.org/source/

您正在寻找其中的 crypto\md5\asm 文件夹。

In addition to the answer that was given you, I'd like to point out that openssl implementation if md5 can be found in openssl tarball that is available from here http://www.openssl.org/source/

You are after crypto\md5\asm folder inside it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文