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