(self)
| 938 | |
| 939 | @requires_builtin_sha2() |
| 940 | def test_digest_with_module(self): |
| 941 | digest = self.hmac_digest(self.key, self.msg, sha2.sha256) |
| 942 | self.assertEqual(digest, binascii.unhexlify(self.res)) |
| 943 | |
| 944 | |
| 945 | class PyConstructorTestCase(ThroughObjectMixin, PyConstructorBaseMixin, |
nothing calls this directly
no test coverage detected