查找给定 String 的 UTF-8 编码的字节的 MD5 哈希值
我需要实现一种方法来查找给定字符串的字节的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 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.
Apache Commons 编码是最好的解决方案。
代码很简单:
Apache commons coding are the best solution.
The code is as simple as:
查看 java.security.MessageDigest 类。它提供了多种哈希函数。
Check out the java.security.MessageDigest class. It provides several hash functions.
来自common-codec: https://commons.apache.org/proper/commons-codec/< /a>
from common-codec : https://commons.apache.org/proper/commons-codec/