Changes between Version 2 and Version 3 of Ticket #15367, comment 10


Ignore:
Timestamp:
Sep 12, 2011, 1:20:31 PM (13 years ago)
Author:
Jannis Leidel

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15367, comment 10

    v2 v3  
    11After talking to Carl on IRC, I'm sorry to say that I misunderstood the reason why you used a list for the setting (to enforce an order of precedence).
    22
    3 So the `global_settings.py` would indeed have this::
     3So the `global_settings.py` would indeed have this:
    44
    55{{{
    6 PASSWORD_HASHERS = (
     6AUTH_PASSWORD_HASHERS = (
    77    'django.utils.passhash.PBKDF2PasswordHasher',
    88    'django.utils.passhash.BCryptPasswordHasher',
     
    1616
    1717{{{
    18 PASSWORD_HASHERS = (
     18AUTH_PASSWORD_HASHERS = (
    1919    'mysite.security.MyCustomBCryptPasswordHasher',
    2020    'django.utils.passhash.PBKDF2PasswordHasher',
Back to Top