I am updating my login module to work with the new bcrypt scheme addet to Joomla in 3.2. Running JUserHelper::hashPassword("test")
returns:
$2y$10$JlH32nPPCKtqqjuw.2p1X.0orqqSXn28eClz5Z3rDozW.j1KASN/e
But when the password is generated from the Joomla backend
$2y$10$0vJdqZDtIddQAAp2yBT7KOoFJ3BLUHCt3LS8XiZlE3dZftYHORJS2
is stored in the database.
I have looked for a cupple of days after something I might have missed (salt?) but I am not sure how Joomla is handling it
I have read and tryed the sugestions from Joomla 3.2.1 password encryption.