Resign a certificate with a specific key
(self, key)
| 1052 | raise ValueError("Unknown type 'key', should be PubKey or PrivKey") |
| 1053 | |
| 1054 | def resignWith(self, key): |
| 1055 | """ |
| 1056 | Resign a certificate with a specific key |
| 1057 | """ |
| 1058 | self.import_from_asn1pkt(key.resignCert(self)) |
| 1059 | |
| 1060 | def remainingDays(self, now=None): |
| 1061 | """ |
nothing calls this directly
no test coverage detected