I am trying to move Druap 7 site to django 1.7 without invalidating user passwords, and this proved to be daunting.
Fortunately, I have found this SO question and this hashing snippet but there is no documentation and as a newbie to django, I have no clue how to integrate the snippet into my project.
So greatly appreciate your help.
You can use
PASSWORD_HASHERS
Django uses first entry in that list to store password and all the other entries are valid hashers that can be used to check
existing
passwords
.settings.py.