(self)
| 1148 | cls.block_size = 64 |
| 1149 | |
| 1150 | def test_repr(self): |
| 1151 | h = self.hmac_new(b"my secret key", digestmod=self.digestname) |
| 1152 | self.assertStartsWith(repr(h), "<hmac.HMAC object at") |
| 1153 | |
| 1154 | |
| 1155 | @hashlib_helper.requires_openssl_hashdigest('sha256') |
nothing calls this directly
no test coverage detected