gpt4 book ai didi

java - Java 不支持 SHA-512?

转载 作者:搜寻专家 更新时间:2023-11-01 00:59:22 26 4
gpt4 key购买 nike

try {
MessageDigest digest = MessageDigest.getInstance("SHA-512");
byte[] output = digest.digest(password);

digest.update(salt);
digest.update(output);
return new BigInteger(1, digest.digest());
} catch (NoSuchAlgorithmException e) {
throw new UnsupportedOperationException(e);
}

但是我得到了 Exception in thread "main"java.security.NoSuchAlgorithmException: SHA_512 MessageDigest not available 错误

最佳答案

以下是standard hashing algorithms由 Java MessageDigest 提供:

  • MD2
  • MD5
  • SHA-1
  • SHA-256
  • SHA-384
  • SHA-512

您可能想要验证您提供给工厂方法的名称。

关于java - Java 不支持 SHA-512?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14918020/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com