they used to do it like this
crypt('provided', '$2a$13$' . $row['members_pass_salt']);
but members_pass_salt is empty and i found this
if ( $this->authenticatePasswordForMember( $member, $password ) )
{
/* If it's the old style, convert it to the new */
if ( $member->members_pass_salt )
{
$member->setLocalPassword( $password );
$member->save();
}
/* Return */
return $member;
}
/* If it's the old style, convert it to the new */
if ( $member->members_pass_salt )
means that if the password salt isnt empty then convert it to the new encryption type... but i cant find where its encrypted