Closed GoogleCodeExporter closed 9 years ago
Thanks for reporting this, looks like two bugs in one.
I've committed fixes to the mercurial repo, but probably won't have time to
push a new release for a little while. If this is a showstopper for you, you
can use the following snippet in place of importing custom_app_context...
{{{
from passlib.context import CryptContext
pwd_context = CryptContext(
schemes=["sha512_crypt", "sha256_crypt"],
all__vary_rounds = "10%",
sha512_crypt__default_rounds = 40000,
sha256_crypt__default_rounds = 40000,
admin__sha512_crypt__default_rounds = 80000,
admin__sha256_crypt__default_rounds = 80000,
)
}}}
Original comment by elic@astllc.org
on 11 Aug 2011 at 1:52
Original comment by elic@astllc.org
on 11 Aug 2011 at 2:14
Great, thanks!
Original comment by vika...@gmail.com
on 11 Aug 2011 at 5:31
1.5.1 has been released, which fixes this bug.
Original comment by elic@astllc.org
on 17 Aug 2011 at 4:47
Original issue reported on code.google.com by
vika...@gmail.com
on 9 Aug 2011 at 10:36