(self, h)
| 1312 | class BuiltinCopyTestCase(ExtensionCopyTestCase, unittest.TestCase): |
| 1313 | |
| 1314 | def init(self, h): |
| 1315 | # Even if Python does not build '_sha2', the HACL* sources |
| 1316 | # are still built, making it possible to use SHA-2 hashes. |
| 1317 | h._init_builtin_hmac(b"key", b"msg", digestmod="sha256") |
| 1318 | |
| 1319 | |
| 1320 | class CompareDigestMixin: |
nothing calls this directly
no test coverage detected