Java 解密SHA-256 字符串
时间: 2023-08-29 19:08:20 浏览: 101
可以使用 Java 自带的 MessageDigest 类来解密 SHA-256 字符串。具体实现方法如下:
```java
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class SHA256Decryptor {
public static void main(String[] args) {
String input = "hello world";
String decryptedString = decryptSHA256(input);
System.out.println(decryptedString);
}
public static String decryptSHA256(String input) {
try {
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(input.getBytes());
StringBuilder hexString = new StringBuilder();
for (byte b : hash) {
String hex = Integer.toHexString(0xff & b);
if (hex.length() == 1) hexString.append('0');
hexString.append(hex);
}
return hexString.toString();
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
}
}
}
```
这个代码中的 `decryptSHA256` 方法接收一个字符串作为输入,返回其对应的 SHA-256 哈希值。在 main 方法中,我们将字符串 "hello world" 作为输入,最终输出其对应的 SHA-256 哈希值。
阅读全文