查找给定 String 的 UTF-8 编码的字节的 MD5 哈希值

发布于 2024-08-14 05:15:48 字数 107 浏览 2 评论 0原文

我需要实现一种方法来查找给定字符串的字节的 MD5 哈希值。在我看来,这个类包含在名为 com.starbase.util.MD5 的包中,但找不到下载 jar 文件的位置。有人能指出我正确的地方吗?

I need to implement a method to find the MD5 hash of the bytes of the given String. It seems to me that this class is included in the package called com.starbase.util.MD5, but could not find where to download a jar file. Could someone point me to the right place?

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

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

发布评论

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

评论(4

只有一腔孤勇 2024-08-21 05:15:48

使用 Java 的内置 MessageDigest这是一个示例(koregan 的帖子),说明如何使用带有 MD5 的 MessageDigest 来哈希细绳。

Use Java's built-in MessageDigest. Here's an example (koregan's post) of how to use a MessageDigest with MD5 to hash a String.

望喜 2024-08-21 05:15:48

Apache Commons 编码是最好的解决方案。

代码很简单:

String hex = DigestUtils.md5Hex(yourString);

Apache commons coding are the best solution.

The code is as simple as:

String hex = DigestUtils.md5Hex(yourString);
薔薇婲 2024-08-21 05:15:48
String myHash= org.apache.commons.codec.digest.DigestUtils.md5Hex("toBeHashed")

来自common-codec: https://commons.apache.org/proper/commons-codec/< /a>

String myHash= org.apache.commons.codec.digest.DigestUtils.md5Hex("toBeHashed")

from common-codec : https://commons.apache.org/proper/commons-codec/

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