Supported CRL decoding in DER and PEM format

This commit is contained in:
olszomal 2024-03-08 09:38:41 +01:00 committed by Michał Trojnara
parent 71a046a2d0
commit 093ed12c66

View File

@ -1676,7 +1676,11 @@ static X509_CRL *x509_crl_get(char *proxy, char *url)
printf("Warning: Faild to get CRL from %s\n\n", url);
return NULL; /* FAILED */
}
crl = d2i_X509_CRL_bio(bio, NULL);
crl = d2i_X509_CRL_bio(bio, NULL); /* DER format */
if (!crl) {
(void)BIO_seek(bio, 0);
crl = PEM_read_bio_X509_CRL(bio, NULL, NULL, NULL); /* PEM format */
}
BIO_free_all(bio);
if (!crl) {
printf("Warning: Faild to decode CRL from %s\n\n", url);