This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| DrupalPasswordHasher | |
| To use, put this in any app and add to your settings.py, something like this: | |
| PASSWORD_HASHERS = ( | |
| 'django.contrib.auth.hashers.PBKDF2PasswordHasher', | |
| 'myproject.myapp.drupal_hasher.DrupalPasswordHasher', | |
| 'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher', | |
| 'django.contrib.auth.hashers.BCryptPasswordHasher', |
NewerOlder