Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

decrypted password php

<?php
/**
 * We just want to hash our password using the current DEFAULT algorithm.
 * This is presently BCRYPT, and will produce a 60 character result.
 *
 * Beware that DEFAULT may change over time, so you would want to prepare
 * By allowing your storage to expand past 60 characters (255 would be good)
 */
echo password_hash("jorge123", PASSWORD_DEFAULT);
?>
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #decrypted #password #php
ADD COMMENT
Topic
Name
1+8 =