本文整理汇总了Python中passpie.crypt.Cryptor.check方法的典型用法代码示例。如果您正苦于以下问题:Python Cryptor.check方法的具体用法?Python Cryptor.check怎么用?Python Cryptor.check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类passpie.crypt.Cryptor
的用法示例。
在下文中一共展示了Cryptor.check方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_passprase_check_with_ensure_raises_value_error_with_ensure
# 需要导入模块: from passpie.crypt import Cryptor [as 别名]
# 或者: from passpie.crypt.Cryptor import check [as 别名]
def test_passprase_check_with_ensure_raises_value_error_with_ensure(self):
cryptor = Cryptor("path/to/database")
cryptor._import_keys = self.Mock()
cryptor._gpg.sign.return_value = None
passphrase = "passphrase"
with self.assertRaises(ValueError):
cryptor.check(passphrase, ensure=True)
示例2: test_passphrase_check_raises_value_error_when_bad_passphrase
# 需要导入模块: from passpie.crypt import Cryptor [as 别名]
# 或者: from passpie.crypt.Cryptor import check [as 别名]
def test_passphrase_check_raises_value_error_when_bad_passphrase(self):
cryptor = Cryptor("path/to/database")
cryptor._import_keys = self.Mock()
passphrase = "passphrase"
result = cryptor.check(passphrase)
self.assertTrue(result)
self.assertTrue(cryptor._gpg.sign.called)
cryptor._gpg.sign.assert_called_once_with(
"testing",
default_key=cryptor.current_key,
passphrase=passphrase
)