(
self, key, msg, hexdigest, digestmod, hashname, digest_size, block_size
)
| 382 | class PyAssertersMixin(PyModuleMixin, AssertersMixin): |
| 383 | |
| 384 | def assert_hmac_extra_cases( |
| 385 | self, key, msg, hexdigest, digestmod, hashname, digest_size, block_size |
| 386 | ): |
| 387 | h = self.hmac.HMAC.__new__(self.hmac.HMAC) |
| 388 | h._init_old(key, msg, digestmod=digestmod) |
| 389 | self.check_object(h, hexdigest, hashname, digest_size, block_size) |
| 390 | |
| 391 | |
| 392 | class OpenSSLAssertersMixin(ThroughOpenSSLAPIMixin, AssertersMixin): |
nothing calls this directly
no test coverage detected