Changes between Initial Version and Version 1 of Ticket #24115


Ignore:
Timestamp:
Jan 11, 2015, 3:25:09 PM (9 years ago)
Author:
Alex Rothberg
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24115 – Description

    initial v1  
    1 If the number of  rounds is changed for the bcrypt hashers it does not appear that the must_update will ever return True.
     1If the number of rounds is changed for the [https://github.com/django/django/blob/5dddd79433ceb88ab67d9851b49a44ce5b8f509c/django/contrib/auth/hashers.py#L273 bcrypt hashers] it does not appear that the must_update will never return True. This is because the [https://github.com/django/django/blob/5dddd79433ceb88ab67d9851b49a44ce5b8f509c/django/contrib/auth/hashers.py#L216 default implementation is used].
     2
     3For comparison, see [https://pythonhosted.org/passlib/lib/passlib.context.html#hash-migration passlib] which does in fact perform migrations for bcrypt.
Back to Top