tags:

views:

61

answers:

1

Hey,

I am looking for a way to make my own login formular in PHP to log in with my extisting Wbb3 account. The login will be on the same server, so i've got access to the database and the salts, but I'm missing the way how to encrypt the password.

Any tutorials?

A: 

Salting in WBB3 is like

$pw = sha1 (salt . sha1 (salt. sha1(password_from_field)));

Look in /lib/util/StringUtil.class.php

Lieuwe Jan