Verify that a certificate is properly signed.
(self, cert)
| 1655 | return None |
| 1656 | |
| 1657 | def verify(self, cert): |
| 1658 | """ |
| 1659 | Verify that a certificate is properly signed. |
| 1660 | """ |
| 1661 | # Check that we can find a chain to this certificate |
| 1662 | if not self.getchain(cert): |
| 1663 | raise ValueError("Certificate verification failed !") |
| 1664 | |
| 1665 | def show(self, ret: bool = False): |
| 1666 | """ |