有关背景,请参阅此问题。
当给定的字符串是英文时,使用 Java 和 PHP 中的 SHA-256 等算法进行散列会产生相同的结果,但是当输入是英语以外的语言(例如中文)时,如何让这两种语言产生相同的结果)?
爪哇
public static String encodePassword(String password) {
try {
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(password.getBytes("UTF-8")); //I've tried messing around with the encoding
String result = "";
for(int i : hash) {
result += String.format("%02x", 0xff & i);
}
return result;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
PHP
对于 PHP,我使用以下hash
函数:
hash("sha256", $password);
输出(输入为国)
爪哇
编码设置为 UTF-8:d1566afa505af0f03b9156d0a9a518a25c2d4568b095ef4ee2dca7fcbb6c29c9
编码设置为 iso-8859-1:8a8de823d5ed3e12746a62ef169bcf372be0ca44f0a1236abc35df05d96928e1
PHP
e1c8436bc8529d791d58c74fefa160dfd678ca8db8f879b8392a42be84f78db3