(self)
| 1169 | self.check_update(key, [msg]) |
| 1170 | |
| 1171 | def test_update_large(self): |
| 1172 | gil_minsize = self.gil_minsize |
| 1173 | key = random.randbytes(16) |
| 1174 | top = random.randbytes(gil_minsize + 1) |
| 1175 | bot = random.randbytes(gil_minsize + 1) |
| 1176 | self.check_update(key, [top, bot]) |
| 1177 | |
| 1178 | def test_update_exceptions(self): |
| 1179 | h = self.HMAC(b"key") |
nothing calls this directly
no test coverage detected