Java 将字符串转换为 SHA1

发布于 2024-12-11 13:08:00 字数 381 浏览 0 评论 0原文

我正在尝试将字符串转换为 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 技术交流群。

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

发布评论

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

评论(1

铜锣湾横着走 2024-12-18 13:08:00

您必须打印数组中的字节,并且您可能希望将哈希显示为十六进制。

for(byte b : SHA1 ) {
  System.out.printf("%02x",b);
}
System.out.println();

You have to print the bytes in your array, and you'd likely want to display the hash as hex.

for(byte b : SHA1 ) {
  System.out.printf("%02x",b);
}
System.out.println();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文