(self, other)
| 1267 | self.signatureLen = len(self.signatureValue) |
| 1268 | |
| 1269 | def isIssuer(self, other): |
| 1270 | # This is exactly the same thing as in Cert method. |
| 1271 | if self.issuer_hash != other.subject_hash: |
| 1272 | return False |
| 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. |
no test coverage detected