Extra tests that can be added in subclasses.
(
self, key, msg, hexdigest, digestmod, hashname, digest_size, block_size
)
| 374 | self.check_object(h1, hexdigest, hashname, digest_size, block_size) |
| 375 | |
| 376 | def assert_hmac_extra_cases( |
| 377 | self, key, msg, hexdigest, digestmod, hashname, digest_size, block_size |
| 378 | ): |
| 379 | """Extra tests that can be added in subclasses.""" |
| 380 | |
| 381 | |
| 382 | class PyAssertersMixin(PyModuleMixin, AssertersMixin): |