(self)
| 979 | |
| 980 | @requires_builtin_sha2() |
| 981 | def test_digest_with_module(self): |
| 982 | digest = self.hmac_digest(self.key, self.msg, sha2.sha256) |
| 983 | self.assertEqual(digest, binascii.unhexlify(self.res)) |
| 984 | |
| 985 | |
| 986 | class PyConstructorTestCase(ThroughObjectMixin, PyConstructorBaseMixin, |
nothing calls this directly
no test coverage detected