Answers for "php hash string with sal"

PHP
21

hash a password php

// To hash the password, use
password_hash("MySuperSafePassword!", PASSWORD_DEFAULT)
  
// To compare hash with plain text, use
password_verify("MySuperSafePassword!", $hashed_password)
Posted by: Guest on February-16-2020
2

php hash password

<?php
echo 'Argon2i hash: ' . password_hash('rasmuslerdorf', PASSWORD_ARGON2I);
?>
Posted by: Guest on October-19-2020

Browse Popular Code Answers by Language