(self)
| 1181 | cls.block_size = 64 |
| 1182 | |
| 1183 | def test_repr(self): |
| 1184 | h = self.hmac_new(b"my secret key", digestmod=self.digestname) |
| 1185 | self.assertStartsWith(repr(h), f"<{self.digestname} HMAC object @") |
| 1186 | |
| 1187 | |
| 1188 | class UpdateTestCaseMixin: |
nothing calls this directly
no test coverage detected