Who -
Joined: 24 Jan 2005 Posts: 4
|
Posted: Fri Feb 04, 2005 10:20 pm Post subject: The actual structure of the password hash |
|
|
I am developing a script to automaticly edit the .conf file to add in users when registred from a php page, now im down to the actual structure of how the password is made up of, somone said it was "username:password" tried that, not it, tried it without the ":"
so far i got something like this
Code: | $usercode = $uname.":".$pass;
$code = md5($usercode);
$fuser = "User ".$uname." ".$code; |
can anyone point out whats not happening correctly? |
|