如何在PHP中解密此加密方法

时间:2013-07-05 16:11:51

标签: php

所以我有这个加密代码用3种盐加密密码

$salt1 = "hey";
$salt1= md5($salt1);
$salt2= "yeh";
$salt1= md5($salt2);
$salt3= "hye";
$salt1= md5($salt3);
$password1= $salt1.$password1.$salt3;
$password1= md5($password1.$salt2);

:我怎么解密这个?

谢谢你的帮助!

1 个答案:

答案 0 :(得分:4)

你不能解密它。 MD5只是一种方式。两个不同的字符串可以与MD5具有相同的输出,因此无法解密原始字符串。

关于破解MD5的唯一方法是密码是字典单词还是易于猜测并且没有种子使用。使用种子,实际上是不可能的,特别是如果没有办法猜测种子是什么的。