(self, anchors)
| 1273 | return other.pubkey.verifyCert(self) |
| 1274 | |
| 1275 | def verify(self, anchors): |
| 1276 | # Return True iff the CRL is signed by one of the provided anchors. |
| 1277 | return any(self.isIssuer(a) for a in anchors) |
| 1278 | |
| 1279 | def show(self): |
| 1280 | print("Version: %d" % self.version) |