本文整理汇总了Python中passlib.context.CryptPolicy.get_handler方法的典型用法代码示例。如果您正苦于以下问题:Python CryptPolicy.get_handler方法的具体用法?Python CryptPolicy.get_handler怎么用?Python CryptPolicy.get_handler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类passlib.context.CryptPolicy
的用法示例。
在下文中一共展示了CryptPolicy.get_handler方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_12_get_handler
# 需要导入模块: from passlib.context import CryptPolicy [as 别名]
# 或者: from passlib.context.CryptPolicy import get_handler [as 别名]
def test_12_get_handler(self):
"test get_handler() method"
p1 = CryptPolicy(**self.sample_config_1pd)
#check by name
self.assertIs(p1.get_handler("bsdi_crypt"), hash.bsdi_crypt)
#check by missing name
self.assertIs(p1.get_handler("sha256_crypt"), None)
self.assertRaises(KeyError, p1.get_handler, "sha256_crypt", required=True)
#check default
self.assertIs(p1.get_handler(), hash.md5_crypt)