From: Jeremy Stanley Date: Wed, 18 Feb 2015 03:35:59 +0000 (+0000) Subject: Switch password handler to passlib's PBKDF2 X-Git-Tag: 0.0.1~220 X-Git-Url: https://mudpy.org/gitweb?a=commitdiff_plain;h=70d0f64a6079d83f8937a51c23d4c721cbb6672c;hp=70d0f64a6079d83f8937a51c23d4c721cbb6672c;p=mudpy.git Switch password handler to passlib's PBKDF2 The passlib implementation of PBKDF2 is strong, portable and more heavily audited. Use that instead of implementing our own custom handler. Also simplify password use by dropping optional parameters from the create and verify functions, and don't bother carrying the old upgrade_legacy_hash public function forward; it can be reworked to provide in-place hash upgrades later if desired. ---