Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed generate_password_hash from sha256 to scrypt #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

raymaslanka
Copy link

generate_password_hash no longer supports the sha256 method

The following methods are now supported:

scrypt, the default. The parameters are n, r, and p, the default is scrypt:32768:8:1. See hashlib.scrypt().

pbkdf2, less secure. The parameters are hash_method and iterations, the default is pbkdf2:sha256:600000. See hashlib.pbkdf2_hmac().

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant