From 18dadeca008f3db6422c16d8ac5bb85ce811c885 Mon Sep 17 00:00:00 2001 From: Arctic Code Date: Sat, 26 Jan 2013 18:08:06 -0500 Subject: [PATCH] Made separation on multiple lines now --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 44bdea1..0e6d52a 100644 --- a/README.md +++ b/README.md @@ -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.