MCPcopy Create free account
hub / github.com/secdev/scapy / isIssuer

Method isIssuer

scapy/layers/tls/cert.py:1269–1273  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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.

Callers 3

verifyMethod · 0.95
treeMethod · 0.45
_rec_getchainMethod · 0.45

Calls 1

verifyCertMethod · 0.45

Tested by

no test coverage detected