Is there any function in php which allows me to de-hashing a string?
For example:
$hashedInfo = hash('md5', 'Hello World!');
I want to do the inverse thing, something like:
$deashedInfo = dehash('md5', $hashedInfo);
Thank you!
Is there any function in php which allows me to de-hashing a string?
For example:
$hashedInfo = hash('md5', 'Hello World!');
I want to do the inverse thing, something like:
$deashedInfo = dehash('md5', $hashedInfo);
Thank you!
It's not possible, because md5 function is not bijective. 2 different inputs can result in same hash value.