by:
django
manage.py createsuperuser
Here is the hashed password:
pbkdf2_sha256$600000$JVx4wOQEFXACcqaOnItouw$W5sMloHSkjJSvrQsB7mqXO2BONjaTSs/w75jkPRqUcQ=
The real password is:
root
And the Secret_Key is SomeOtherSecretPassword.
I want to know, what algorithm is used by django to create this password?
And how can I re-generate it?
Split it by $ and look closer The number is going to be iterations
Thanks, let me check...
So, pbkdf2_sha256 is the algo 600,000 is the itterations JVx4wOQEFXACcqaOnItouw is the salt, And W5sMloHSkjJSvrQsB7mqXO2BONjaTSs/w75jkPRqUcQ= is the generated hash?
Read the docs
Обсуждают сегодня