Read an X.509 CRL from a PEM‐encoded BIO.
Synopsis
Declared in <openssl/pem.h>
X509_CRL*
PEM_read_bio_X509_CRL(
BIO* bp,
X509_CRL** x,
pem_password_cb* cb,
void* u);
Return Value
CRL on success, or NULL on failure.
Parameters
Name |
Description |
bp |
BIO to read from. |
x |
Optional address of an X509_CRL pointer to reuse, or NULL. |
cb |
Password callback for encrypted PEM, or NULL. |
u |
Application data passed to |
Created with MrDocs