flask-scrypt
flask-scrypt copied to clipboard
Flask-Scrypt flask extension provides scrypt password hashing and random salt generation.
Bumps [werkzeug](https://github.com/pallets/werkzeug) from 0.15.3 to 2.2.3. Release notes Sourced from werkzeug's releases. 2.2.3 This is a fix release for the 2.2.x release branch. Changes: https://werkzeug.palletsprojects.com/en/2.2.x/changes/#version-2-2-3 Milestone: https://github.com/pallets/werkzeug/milestone/26?closed=1 This release contains...
You fixed #6 but still haven't released a new version to pypi.
On the website is wrote (in usage): > salt = generate_password_salt() and probably it should be: > salt = generate_random_salt() site: http://flask-scrypt.readthedocs.org/en/latest/
> Args: > salt : Random base64 encoded string. But actually it is not base64 and can be any bytes. It can be checked with example from https://github.com/wg/scrypt README: >...
This happens when salt=None `Exception: AttributeError: 'NoneType' object has no attribute 'encode'` An exception explaining that a salt is required seems like a more useful error message. Also, thanks for...