Comparison of hashes in PHP

0

Is there any way to make a comparison with two hashes of different types and find out if their contents are the same or not?

For example : I have a hash in SHA512 and another in MD5 (can be any other hash ) that were created from of the same text. Using PHP would like to compare the two and find out if they are the same or not.

    
asked by anonymous 04.12.2017 / 17:31

1 answer

1

You can not do this comparison (or conversion) from hash. The ways to achieve hash matching are by having the text encrypted and checking for the two options.

Depending on what you want from the to query broken hash database. Example link

    
04.12.2017 / 21:34