I am programming a certificate revocation check using CRL that is present in the verified certificate. For the check, I also need the issuer certificate.
Where can I find the URL address for the issuer?
I know that I can get the name of the issuer using this function:
X509_NAME *X509_get_issuer_name(const X509 *);
But I need to get the url, from where I can get the issuer certificate to call X509_CRL_verify(X509_CRL *, EVP_PKEY *)
function.