I want to decrypt the encrypted password that is encrypted by php's password_hash() method.
<?php
$password = 12345;
$hashed_password = password_hash($password, PASSWORD_DEFAULT);
?>
in above code i want to decrypt $hashed_password
to 12345
. how can i do it.
You don't need to
You can't.
From password_hash.