Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

bycrypt password php

<?php
  
  // The plain text password to be hashed
  $plaintext_password = "Password@123";
  
  // The hash of the password that
  // can be stored in the database
  $hash = password_hash($plaintext_password, 
          PASSWORD_DEFAULT);
  
  // Print the generated hash
  echo "Generated hash: ".$hash;
?>
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #bycrypt #password #php
ADD COMMENT
Topic
Name
2+4 =