3v4l.org

run code in 300+ PHP versions simultaneously
<?php $password = "thisismypassword"; $salt = "SaltyMotherFucker"; // Our hashing method: $hash = md5($salt . ":" . $password); echo "Our's: $hash\n"; // Hmac - sha1 $hash = hash_hmac('sha256',$password,$salt); echo "Hmac-sha1: $hash";

preferences:
40.7 ms | 402 KiB | 5 Q