Jump to content

ibrooda

Newbie
  • Posts

    2
  • Joined

  • Last visited

Everything posted by ibrooda

  1. found it if (password_verify($providedpass, $row['members_pass_hash'])) $correct_password = true;
  2. 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
×
×
  • Create New...