01-26-2022, 07:35 AM
(This post was last modified: 01-26-2022, 07:42 AM by pokosima1999.)
Hello!
Please create new module phpbb2 convert to phpbb3:
Files:
https://github.com/phpbb/phpbb/tree/mast...convertors
phpBB/install/convertors/functions_phpbb20.php
phpBB/install/convertors/convert_phpbb20.php
Code:
Example hash:
$CP$phpbb3hash
Signature:
$CP$$H$
Algorithm:
phpass(phpass)
Please create new module phpbb2 convert to phpbb3:
Files:
https://github.com/phpbb/phpbb/tree/mast...convertors
phpBB/install/convertors/functions_phpbb20.php
phpBB/install/convertors/convert_phpbb20.php
Code:
PHP Code:
function phpbb_convert_password_hash($hash)
{
global $phpbb_container;
/* @var $manager \phpbb\passwords\manager */
$manager = $phpbb_container->get('passwords.manager');
$hash = $manager->hash($hash, '$H$');
return '$CP$' . $hash;
}
Example hash:
$CP$phpbb3hash
Signature:
$CP$$H$
Algorithm:
phpass(phpass)