Made separation on multiple lines now

This commit is contained in:
Arctic Code 2013-01-26 18:08:06 -05:00
parent 7dd2c60d05
commit 18dadeca00
1 changed files with 2 additions and 0 deletions

View File

@ -22,7 +22,9 @@ The function returns one value 129 bytes long. This is the combined final hash o
It's seperated by a '/', so in php to seperate it would be like:
$newpass = explode('/', $newpass);
$newsalt = $newpass[1]; // The salt is always the second part of the array
$newpass = $newpass[0]; // The password is always the first part of the array
I have a live demo of the use of HashPass located at http://p.unps.us/pass Arguments are fed through the url using GET.