(self)
| 1135 | cls.block_size = 64 |
| 1136 | |
| 1137 | def test_repr(self): |
| 1138 | h = self.hmac_new(b"my secret key", digestmod=self.digestname) |
| 1139 | self.assertStartsWith(repr(h), f"<{self.digestname} HMAC object @") |
| 1140 | |
| 1141 | |
| 1142 | class UpdateTestCaseMixin: |
nothing calls this directly
no test coverage detected