xref: /onnv-gate/usr/src/common/openssl/doc/crypto/d2i_X509_CRL.pod (revision 2175:b0b2f052a486)
1*2175Sjp161948=pod
2*2175Sjp161948
3*2175Sjp161948=head1 NAME
4*2175Sjp161948
5*2175Sjp161948d2i_X509_CRL, i2d_X509_CRL, d2i_X509_CRL_bio, d2i_509_CRL_fp,
6*2175Sjp161948i2d_X509_CRL_bio, i2d_X509_CRL_fp - PKCS#10 certificate request functions.
7*2175Sjp161948
8*2175Sjp161948=head1 SYNOPSIS
9*2175Sjp161948
10*2175Sjp161948 #include <openssl/x509.h>
11*2175Sjp161948
12*2175Sjp161948 X509_CRL *d2i_X509_CRL(X509_CRL **a, const unsigned char **pp, long length);
13*2175Sjp161948 int i2d_X509_CRL(X509_CRL *a, unsigned char **pp);
14*2175Sjp161948
15*2175Sjp161948 X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **x);
16*2175Sjp161948 X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **x);
17*2175Sjp161948
18*2175Sjp161948 int i2d_X509_CRL_bio(X509_CRL *x, BIO *bp);
19*2175Sjp161948 int i2d_X509_CRL_fp(X509_CRL *x, FILE *fp);
20*2175Sjp161948
21*2175Sjp161948=head1 DESCRIPTION
22*2175Sjp161948
23*2175Sjp161948These functions decode and encode an X509 CRL (certificate revocation
24*2175Sjp161948list).
25*2175Sjp161948
26*2175Sjp161948Othewise the functions behave in a similar way to d2i_X509() and i2d_X509()
27*2175Sjp161948described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
28*2175Sjp161948
29*2175Sjp161948=head1 SEE ALSO
30*2175Sjp161948
31*2175Sjp161948L<d2i_X509(3)|d2i_X509(3)>
32*2175Sjp161948
33*2175Sjp161948=head1 HISTORY
34*2175Sjp161948
35*2175Sjp161948TBA
36*2175Sjp161948
37*2175Sjp161948=cut
38