| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
| |
Previously I rolled my own password hashing function. While it at least
used some sort of salt, it's still a terrible idea.
The newly created class PasswordHash wraps the password_hash() family of
functions but can also check the old password hash format (to distinguish
them, the new password hashes are prefixed with a '!'). In
PasswordHash::needsRehash we then always report an hash of the old format
as being in need of a rehash. That way, these old hashes will be replaced
the next time the user successfully logs in.
|
|
|
|
| |
This gets rid of our last non-compüoser dependency! :)
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- Expand tabs into spaces
- Remove trailing whitespace
- Get rid of closing `?>` tags
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Requirement of session_doctor.php was removed from setup.php, since this
is just a debugging tool and should never be on a productive
installation!
|
|
|
|
| |
Was never used. Why did I even wrote this file?
|
|
|