(self)
| 225 | c.hexdigest() |
| 226 | |
| 227 | def test_algorithms_guaranteed(self): |
| 228 | self.assertEqual(hashlib.algorithms_guaranteed, |
| 229 | set(_algo for _algo in self.supported_hash_names |
| 230 | if _algo.islower())) |
| 231 | |
| 232 | def test_algorithms_available(self): |
| 233 | self.assertTrue(set(hashlib.algorithms_guaranteed). |
nothing calls this directly
no test coverage detected