Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#18118 closed Bug (fixed)

django.contrib.auth.hashers.make_password doc isn't up to date

Reported by: Mathieu Agopian Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: mathieu.agopian@… Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

The doc says (https://docs.djangoproject.com/en/1.4/topics/auth/#django.contrib.auth.hashers.make_password):

"Currently supported algorithms are: 'sha1', 'md5' and 'crypt' if you have the crypt library installed."

This isn't true anymore in Django1.4, as there's several more algorithms supported, as listed in https://docs.djangoproject.com/en/1.4/topics/auth/#auth-password-storage

Attachments (1)

18118.diff (2.0 KB ) - added by Claude Paroz 12 years ago.
Updated hashers utility functions documentation

Download all attachments as: .zip

Change History (7)

comment:1 by Mathieu Agopian, 12 years ago

Cc: mathieu.agopian@… added

by Claude Paroz, 12 years ago

Attachment: 18118.diff added

Updated hashers utility functions documentation

comment:2 by Claude Paroz, 12 years ago

Has patch: set
Triage Stage: UnreviewedAccepted

comment:3 by Ramiro Morales, 12 years ago

Triage Stage: AcceptedReady for checkin

comment:4 by Claude Paroz, 12 years ago

Resolution: fixed
Status: newclosed

In [17905]:

Fixed #18118 -- Improved documentation for contrib.auth.hashers utility functions. Thanks Mathieu Agopian for the report and Ramiro Morales for the review.

comment:5 by Claude Paroz, 12 years ago

In [17906]:

[1.4.X] Fixed #18118 -- Improved documentation for contrib.auth.hashers utility functions. Thanks Mathieu Agopian for the report and Ramiro Morales for the review.

Backport of r17905 from trunk.

comment:6 by Mathieu Agopian, 12 years ago

That was quick! Awesome thanks a lot!

Note: See TracTickets for help on using tickets.
Back to Top