0

below is my encrypted code so, please tell how to decrypt the string using php.

<?php
$input = 'password';
$password_hash = md5($input);
echo "$password_hash";
?>
haider
  • 13
  • 1
  • 9

1 Answers1

0

md5 is a hashing technique. You cannot decrypt it back.Hashing means, once you are converted it to a encrypted code, you cannot go back! But you can still compare the md5 encrypted value with the another md5 encrypted value to check matches (mostly in the case of password verification and all!)

Copied from Is md5 decryption possible?

Community
  • 1
  • 1
Valarpirai
  • 465
  • 3
  • 14