Answers for "make hash php"

PHP
18

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
3

php hash

<?php
echo hash('ripemd160', 'The quick brown fox jumped over the lazy dog.');
?>
Posted by: Guest on July-29-2020

Browse Popular Code Answers by Language