(self)
| 1165 | cls.block_size = 64 |
| 1166 | |
| 1167 | def test_repr(self): |
| 1168 | h = self.hmac_new(b"my secret key", digestmod=self.digestname) |
| 1169 | self.assertStartsWith(repr(h), f"<{self.digestname} HMAC object @") |
| 1170 | |
| 1171 | |
| 1172 | class BuiltinSanityTestCase(ThroughBuiltinAPIMixin, SanityTestCaseMixin, |
nothing calls this directly
no test coverage detected