mirror of
https://github.com/c0de-archive/HashPass.git
synced 2024-12-22 03:32:40 +00:00
Made separation on multiple lines now
This commit is contained in:
parent
7dd2c60d05
commit
18dadeca00
@ -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:
|
It's seperated by a '/', so in php to seperate it would be like:
|
||||||
|
|
||||||
$newpass = explode('/', $newpass);
|
$newpass = explode('/', $newpass);
|
||||||
|
|
||||||
$newsalt = $newpass[1]; // The salt is always the second part of the array
|
$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
|
$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.
|
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.
|
||||||
|
Loading…
Reference in New Issue
Block a user