How to change the format of password hash storage in Django

Viewed 17

Django saves the password to the database in the format bcrypt$$2b$12$e125VgvfQiPna.vWYLy1eiJgU1BxWnzKG5vTUPU4a2APuiNgCFoK. Other software that takes the user's password from the database does not accept bcrypt$ at the beginning of the string and thinks that the password is wrong. Is there a way to remove bcrypt$ at the beginning of the string and still keep the authorization system in Django itself?

0 Answers
Related