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