-
Improvement
-
Resolution: Won't Do
-
Minor
-
None
-
2.8.7, 2.9.1, 3.0
-
MOODLE_28_STABLE, MOODLE_29_STABLE, MOODLE_30_STABLE
inlcude another option to log in the django databases, they split the one way hashed password with $ so this line of code could made the autentication:
$pieces = explode("$", $fromdb);
$iterations = $pieces[1];
$salt = $pieces[2];
$old_hash = $pieces[3];
$hash = hash_pbkdf2("SHA256", $extpassword, $salt, $iterations, 0, true);
$hash = base64_encode($hash);
return $hash==$old_hash;
- has a non-specific relationship to
-
MDL-43917 Add salted password support for auth/db
-
- Closed
-
- has been marked as being related by
-
MDL-20365 Salted Crypt passwords option for external database authentication
-
- Closed
-
-
MDL-42715 provide bcrypt for external database auth
-
- Closed
-
- is duplicated by
-
MDL-50883 Add PBKDF2 authentication to auth_db
-
- Closed
-