Thursday, October 8, 2020

Re: Password see

I hope you realize the security implecations of what you are asking? You should never store a password in a way that you can retrieve it - and django doesn't do that. It hashes the password with a salt and then stores the hash. The hash is then stored in the database. The hash should be one way - and therefore you should not be able to retrieve the password in any way. When you login the password you use gets sent through the same algorithm and if the hashes are the same - the user is logged in.

Regards,

Andréas


Den tors 8 okt. 2020 kl 13:41 skrev kkwaq...@gmail.com <kkwaqar007@gmail.com>:
How to se password admin ,
Django in store password encrypted format ,
How to retrieve password and decrypted password .....

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/954b7aa9-ab05-48d1-8e79-e9f7ca35407an%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAK4qSCc1kiNfOHfK2VyEm%2BWZY%3Ds95a5yQh-hRty_W%3Duc0H8Axg%40mail.gmail.com.

No comments:

Post a Comment