(self)
| 916 | |
| 917 | @hashlib_helper.requires_hashdigest("sha256") |
| 918 | def test_digest(self): |
| 919 | digest = self.hmac_digest(self.key, self.msg, "sha256") |
| 920 | self.assertEqual(digest, binascii.unhexlify(self.res)) |
| 921 | |
| 922 | |
| 923 | class PyConstructorBaseMixin(PyModuleMixin, |
nothing calls this directly
no test coverage detected