Quote:
Originally Posted by Xenon
hmm, the easy way to explain:
$password -> the real password
md5($password) -> password in vb2
md5(md5($password) . 'licensenr') -> password in vb3
this is to make all hashe differ on different boards, so even if the real password is identical, the hashes on two different boards aren't
|
so if I just took this..
PHP Code:
$hashedpassword = md5($_POST['password_md5']);
it would give me the exact same MD5 hash as in vB2.x?