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