(*args)
| 314 | self.check_object(h, hexdigest, hashname, digest_size, block_size) |
| 315 | |
| 316 | def hmac_new_feed(*args): |
| 317 | h = hmac_new_func(key, *args, **hmac_new_kwds) |
| 318 | h.update(msg) |
| 319 | self.check_hexdigest(h, hexdigest, digest_size) |
| 320 | |
| 321 | with self.subTest('no initial message'): |
| 322 | hmac_new_feed() |
nothing calls this directly
no test coverage detected