password_verify php
<?php $hash = password_hash('rasmuslerdorf'); // the password_hash function will encrypt the password into a 60 character string if (password_verify('rasmuslerdorf', $hash)) { echo 'Password is valid!'; } else { echo 'Invalid password.'; } ?> // the only to decrypt is by using the password_verify() function