(self)
| 1210 | self.assertEqual(h1.hexdigest(), h2.hexdigest()) |
| 1211 | |
| 1212 | def test_update(self): |
| 1213 | key, msg = random.randbytes(16), random.randbytes(16) |
| 1214 | with self.subTest(key=key, msg=msg): |
| 1215 | self.check_update(key, [msg]) |
| 1216 | |
| 1217 | def test_update_large(self): |
| 1218 | gil_minsize = self.gil_minsize |
nothing calls this directly
no test coverage detected