Rewrite the signature of either a Cert or an X509_Cert.
(self, cert)
| 667 | return c |
| 668 | |
| 669 | def resignCert(self, cert): |
| 670 | """Rewrite the signature of either a Cert or an X509_Cert.""" |
| 671 | return self.signTBSCert(cert.tbsCertificate, h=None) |
| 672 | |
| 673 | def verifyCert(self, cert): |
| 674 | """Verifies either a Cert or an X509_Cert.""" |
no test coverage detected