Lines Matching refs:tbsCertList
760 tbsCertList = crl.tbsCertList
761 self.tbsCertList = raw(tbsCertList)
763 if tbsCertList.version:
764 self.version = tbsCertList.version.val + 1
767 self.sigAlg = tbsCertList.signature.algorithm.oidname
768 self.issuer = tbsCertList.get_issuer()
769 self.issuer_str = tbsCertList.get_issuer_str()
772 self.lastUpdate_str = tbsCertList.this_update.pretty_time
773 lastUpdate = tbsCertList.this_update.val
784 if tbsCertList.next_update:
785 self.nextUpdate_str = tbsCertList.next_update.pretty_time
786 nextUpdate = tbsCertList.next_update.val
795 if tbsCertList.crlExtensions:
796 for extension in tbsCertList.crlExtensions:
801 if tbsCertList.revokedCertificates:
802 for cert in tbsCertList.revokedCertificates: