Java 将字符串转换为 SHA1
我正在尝试将字符串转换为 SHA1 哈希值!
这是我的代码
public static void SHA1(String x) throws NoSuchAlgorithmException
{
MessageDigest sha1 = MessageDigest.getInstance("SHA1");
SHA1 = sha1.digest((x).getBytes());
}
,我有一个 private static byte[] SHA1;
遗憾的是输出结果是这样的,
[B@1a758cb
我试图使代码尽可能小! 谢谢
I am trying to convert a String to a SHA1 hash!
This is my code
public static void SHA1(String x) throws NoSuchAlgorithmException
{
MessageDigest sha1 = MessageDigest.getInstance("SHA1");
SHA1 = sha1.digest((x).getBytes());
}
I have a private static byte[] SHA1;
Sadly the output comes out like this
[B@1a758cb
I am trying to make the code as small as possible!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须打印数组中的字节,并且您可能希望将哈希显示为十六进制。
You have to print the bytes in your array, and you'd likely want to display the hash as hex.