Topic: [Help needed] Hash type

I want to create program who connect to database then login with user and pass from forum
if it correct then he can access the program ....
so i have prob with password hash
can you tell me in what format is punbb password hash so i can create in in .Net (c#)

Re: [Help needed] Hash type

It is

sha1($salt.sha1($password));

$salt - stored in DB for each user, generated on registration (table "users", field "salt"), $password - user's password.

Re: [Help needed] Hash type

sha1($salt.sha1($password));
this doesen't mean anything for me..
becouse that is a php code and i don't get what that means smile

Re: [Help needed] Hash type

sha1- function, description from manual:

sha1 — Calculate the sha1 hash of a string

About "." you can read here smile