Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #398 from jonafato/bcrypt-hotfix
Browse files Browse the repository at this point in the history
Restrict bcrypt to <2.0.0
  • Loading branch information
Matt Wright committed Jun 25, 2015
2 parents 33252ae + 398f5c9 commit cbd0db7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ Core
passwords. Recommended values for
production systems are ``bcrypt``,
``sha512_crypt``, or ``pbkdf2_sha512``.
Defaults to ``plaintext``.
Defaults to ``plaintext``. Note:
``bcrypt>=2.0.0`` is not currently
supported. If ``bcrypt`` is preferred,
please use ``bcrypt<2.0``.
``SECURITY_PASSWORD_SALT`` Specifies the HMAC salt. This is only
used if the password hash type is set
to something other than plain text.
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Flask-SQLAlchemy>=1.0
bcrypt>=1.0.2
bcrypt>=1.0.2,<2.0.0
flask-mongoengine>=0.7.0
flask-peewee>=0.6.5
pymongo==2.8
Expand Down

0 comments on commit cbd0db7

Please sign in to comment.