Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Password Encryption WIth PHP

Share this post!
 Vote this!

This is a quick tutorial on how to encrypt passwords using PHP. There are a couple different functions you can use and you can also make them more secure by using a Salt. So first off I will start by showing you the basic functions to encrypt.
$pass = "lol";

$pass = md5($pass); // Will put out a 32 character hash, many sites can attempt
 to break this by running it through rainbow tables.    more...

0 comments:

Post a Comment