mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
Supported CRL decoding in DER and PEM format
This commit is contained in:
parent
71a046a2d0
commit
093ed12c66
@ -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);
|
printf("Warning: Faild to get CRL from %s\n\n", url);
|
||||||
return NULL; /* FAILED */
|
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);
|
BIO_free_all(bio);
|
||||||
if (!crl) {
|
if (!crl) {
|
||||||
printf("Warning: Faild to decode CRL from %s\n\n", url);
|
printf("Warning: Faild to decode CRL from %s\n\n", url);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user