I have CRL files which I need to read issuer, last update and next update information. However I am only able to read revoked as given below.
crl = crypto.load_crl(crypto.FILETYPE_PEM, pem)
revoked_list = crl.get_revoked()
I am using Python 2.7 and pyOpenSSL 0.15. How can I read issuer and other data in CRL?