(self)
| 1164 | self.assertEqual(h1.hexdigest(), h2.hexdigest()) |
| 1165 | |
| 1166 | def test_update(self): |
| 1167 | key, msg = random.randbytes(16), random.randbytes(16) |
| 1168 | with self.subTest(key=key, msg=msg): |
| 1169 | self.check_update(key, [msg]) |
| 1170 | |
| 1171 | def test_update_large(self): |
| 1172 | gil_minsize = self.gil_minsize |
nothing calls this directly
no test coverage detected