Update docs.
[oweals/openssl.git] / doc / crypto / d2i_X509_REQ.pod
1 =pod
2
3 =head1 NAME
4
5 d2i_X509_REQ, i2d_X509_REQ - PKCS#10 certificate request functions.
6
7 =head1 SYNOPSIS
8
9  #include <openssl/x509.h>
10
11  DH *d2i_X509_REQ(X509_REQ **a, unsigned char **pp, long length);
12  int i2d_X509_REQ(X509_REQ *a, unsigned char **pp);
13
14  X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x);
15  X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x);
16
17  int i2d_X509_REQ_bio(X509_REQ *x, BIO *bp);
18  int i2d_X509_REQ_fp(X509_REQ *x, FILE *fp);
19
20 =head1 DESCRIPTION
21
22 These functions decode and encode a PKCS#10 certificate request.
23
24 Othewise these behave in a similar way to d2i_X509() and i2d_X509()
25 described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
26
27 =head1 SEE ALSO
28
29 L<d2i_X509(3)|d2i_X509(3)>
30
31 =head1 HISTORY
32
33 TBA
34
35 =cut