(self)
| 1215 | self.check_update(key, [msg]) |
| 1216 | |
| 1217 | def test_update_large(self): |
| 1218 | gil_minsize = self.gil_minsize |
| 1219 | key = random.randbytes(16) |
| 1220 | top = random.randbytes(gil_minsize + 1) |
| 1221 | bot = random.randbytes(gil_minsize + 1) |
| 1222 | self.check_update(key, [top, bot]) |
| 1223 | |
| 1224 | def test_update_exceptions(self): |
| 1225 | h = self.HMAC(b"key") |
nothing calls this directly
no test coverage detected