(self)
| 1119 | cls.block_size = 64 |
| 1120 | |
| 1121 | def test_repr(self): |
| 1122 | h = self.hmac_new(b"my secret key", digestmod=self.digestname) |
| 1123 | self.assertStartsWith(repr(h), f"<{self.digestname} HMAC object @") |
| 1124 | |
| 1125 | |
| 1126 | class BuiltinSanityTestCase(ThroughBuiltinAPIMixin, SanityTestCaseMixin, |
nothing calls this directly
no test coverage detected