Skip to content

Commit

Permalink
hashing: added pbkdf2_sha256 to make_passwordmanager schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Nov 26, 2016
1 parent 33ba44f commit d854e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ziggurat_foundations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def make_passwordmanager():
# replace this list with the hash(es) you wish to support.
# this example sets pbkdf2_sha256 as the default,
# with support for legacy des_crypt hashes.
schemes=["bcrypt"],
schemes=["bcrypt", "pbkdf2_sha256"],
default="bcrypt"
)
return pwd_context
Expand Down

0 comments on commit d854e90

Please sign in to comment.