(self)
| 1102 | cls.block_size = 64 |
| 1103 | |
| 1104 | def test_repr(self): |
| 1105 | h = self.hmac_new(b"my secret key", digestmod=self.digestname) |
| 1106 | self.assertStartsWith(repr(h), "<hmac.HMAC object at") |
| 1107 | |
| 1108 | |
| 1109 | @hashlib_helper.requires_openssl_hashdigest('sha256') |
nothing calls this directly
no test coverage detected