(self)
| 210 | c.hexdigest() |
| 211 | |
| 212 | def test_algorithms_guaranteed(self): |
| 213 | self.assertEqual(hashlib.algorithms_guaranteed, |
| 214 | set(_algo for _algo in self.supported_hash_names |
| 215 | if _algo.islower())) |
| 216 | |
| 217 | def test_algorithms_available(self): |
| 218 | self.assertTrue(set(hashlib.algorithms_guaranteed). |
nothing calls this directly
no test coverage detected