我正在处理一些已使用下面显示的方法转换为数字序列的MD5哈希值。鉴于下面的代码和示例哈希,如何“反转”getString()
方法的效果并将数字序列转换回MD5哈希?
例如,encrypt("umadbro");
返回“1518918615824625494170109603025017352201241”,因为MD5哈希通过getString()
方法传递。 “umadbro”的MD5哈希是9759ba9ef6fe5eaa6d3c1efaad34c9f1。我需要一个方法,它接受由getString()
方法修改的一串数字,并将其转换为MD5哈希。例如:reverseMethod("1518918615824625494170109603025017352201241");
应输出“9759ba9ef6fe5eaa6d3c1efaad34c9f1”(输入参数是修改后的数字字符串,输出是原始字符串的MD5哈希值)。 注意:我不是在寻找破解MD5哈希的方法。我只需要一种方法来反转下面显示的getString()
方法的效果。
public String encrypt(String source)
{
try
{
MessageDigest md = MessageDigest.getInstance("MD5");
byte[] bytes = md.digest(source.getBytes());
return getString(bytes);
}
catch (Exception e)
{
e.printStackTrace();
}
return null;
}
private String getString(byte[] bytes) //this takes an md5 hash and turns it into a string of numbers.
// How can I reverse the effect of this method?
{
StringBuffer sb = new StringBuffer();
for (int i = 0; i < bytes.length; i++)
{
byte b = bytes[i];
sb.append(0xFF & b);
}
return sb.toString();
}
答案 0 :(得分:2)
如果不尝试所有组合和比较,这是不可能的。问题是getString
不会返回给定散列值唯一的数字作为字节。
例如,如果字节的值为0216
十六进制,则02
在十进制字符串编码中变为"2"
,16
变为"22"
。因此,您的方法将返回"222"
作为两者的串联。现在,如果我们为1602
做同样的事情,那么它将导致"22"
和"2"
,并且连接仍将导致"222"
。对于字节数组中的每个字节组合都会发生这种情况。
因此,虽然结果可能仍然是相对安全的哈希值,但发现冲突的可能性很多更高。你可以做的是返回一大堆哈希值,其中1将导致匹配,但这需要大量的计算;如果你想比较你最好把你的结果通过getString
并比较安全性较低的哈希值(甚至比MD5已经不那么安全)。
答案 1 :(得分:2)
我试着编写一些找到所有可能组合的代码,结果发现它比我预期的要少得多。在这种情况下只有2。找到它们只需要很少的时间。
import java.util.ArrayList;
import java.util.Arrays;
public class Comb {
static long combinations(String str, int startIdx, int numBytes, ArrayList<byte[]> combinations, byte[] combination) {
if(startIdx >= str.length()) {
if(numBytes == 16) {
combinations.add(combination.clone());
return 1;
} else return 0;
}
if(numBytes > 15) return 0;
combination[numBytes] = (byte)(str.charAt(startIdx) - '0');
long result = combinations(str, startIdx + 1, numBytes + 1, combinations, combination);
if(startIdx < str.length() - 1 && str.charAt(startIdx) != '0') {
combination[numBytes] = (byte)((str.charAt(startIdx) - '0') * 10 + (str.charAt(startIdx + 1) - '0'));
result += combinations(str, startIdx + 2, numBytes + 1, combinations, combination);
}
if(startIdx < str.length() - 2) {
combination[numBytes] = (byte)((str.charAt(startIdx) - '0') * 100 + (str.charAt(startIdx + 1) - '0') * 10 + (str.charAt(startIdx + 2) - '0'));
if(str.charAt(startIdx) == '1') result += combinations(str, startIdx + 3, numBytes + 1, combinations, combination);
if(str.charAt(startIdx) == '2' &&
(str.charAt(startIdx + 1) < '5' || str.charAt(startIdx + 1) == '5' && str.charAt(startIdx + 2) < '6')) {
result += combinations(str, startIdx + 3, numBytes + 1, combinations, combination);
}
}
return result;
}
public static void main(String[] args) {
ArrayList<byte[]> combinations = new ArrayList<>();
System.out.println(combinations("1518918615824625494170109603025017352201241", 0, 0, combinations, new byte[16]));
for(byte[] c: combinations) {
System.out.println(Arrays.toString(c));
}
}
}
这个输出是:
2
[15, -67, -70, -98, -10, -2, 94, -86, 109, 60, 30, -6, -83, 52, -55, -15]
[-105, 89, -70, -98, -10, -2, 94, -86, 109, 60, 30, -6, -83, 52, -55, -15]
它找到的第二个解决方案确实是正确的。