(self)
| 636 | self.hasher.safe_summary("encoded") |
| 637 | |
| 638 | def test_verify(self): |
| 639 | msg = self.not_implemented_msg % "a verify" |
| 640 | with self.assertRaisesMessage(NotImplementedError, msg): |
| 641 | self.hasher.verify("password", "encoded") |
| 642 | |
| 643 | |
| 644 | @skipUnless(argon2, "argon2-cffi not installed") |
nothing calls this directly
no test coverage detected