(self)
| 1411 | |
| 1412 | @property |
| 1413 | def hashdata(self): |
| 1414 | # when signing a key, only the public portion of the keys is hashed |
| 1415 | # if this is a private key, the private components of the key material need to be left out |
| 1416 | pub = self._key if self.is_public else self._key.pubkey() |
| 1417 | return pub.__bytearray__()[len(pub.header):] |
| 1418 | |
| 1419 | @property |
| 1420 | def is_expired(self): |
nothing calls this directly
no test coverage detected