1d2i_X509_CRL(3) OpenSSL d2i_X509_CRL(3)
2
3
4
6 d2i_X509_CRL, i2d_X509_CRL, d2i_X509_CRL_bio, d2i_X509_CRL_fp,
7 i2d_X509_CRL_bio, i2d_X509_CRL_fp - PKCS#10 certificate request
8 functions.
9
11 #include <openssl/x509.h>
12
13 X509_CRL *d2i_X509_CRL(X509_CRL **a, const unsigned char **pp, long length);
14 int i2d_X509_CRL(X509_CRL *a, unsigned char **pp);
15
16 X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **x);
17 X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **x);
18
19 int i2d_X509_CRL_bio(BIO *bp, X509_CRL *x);
20 int i2d_X509_CRL_fp(FILE *fp, X509_CRL *x);
21
23 These functions decode and encode an X509 CRL (certificate revocation
24 list).
25
26 Othewise the functions behave in a similar way to d2i_X509() and
27 i2d_X509() described in the d2i_X509(3) manual page.
28
30 d2i_X509(3)
31
33 TBA
34
35
36
371.0.2o 2020-01-28 d2i_X509_CRL(3)