blob: 91c0c1974b49dbdb3afcbceca19d92e94f9248ce [file] [log] [blame]
Dr. Stephen Henson842d8e22002-10-06 12:34:06 +00001=pod
2
3=head1 NAME
4
Dr. Stephen Henson4ec04482002-10-06 12:40:31 +00005d2i_X509_REQ, i2d_X509_REQ, d2i_X509_REQ_bio, d2i_X509_REQ_fp,
6i2d_X509_REQ_bio, i2d_X509_REQ_fp - PKCS#10 certificate request functions.
Dr. Stephen Henson842d8e22002-10-06 12:34:06 +00007
8=head1 SYNOPSIS
9
10 #include <openssl/x509.h>
11
Nils Larsch0d2848b2005-07-13 22:01:33 +000012 X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length);
Dr. Stephen Henson842d8e22002-10-06 12:34:06 +000013 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
Dr. Stephen Henson94480b52009-09-12 23:34:41 +000018 int i2d_X509_REQ_bio(BIO *bp, X509_REQ *x);
19 int i2d_X509_REQ_fp(FILE *fp, X509_REQ *x);
Dr. Stephen Henson842d8e22002-10-06 12:34:06 +000020
21=head1 DESCRIPTION
22
23These functions decode and encode a PKCS#10 certificate request.
24
25Othewise these behave in a similar way to d2i_X509() and i2d_X509()
26described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
27
28=head1 SEE ALSO
29
30L<d2i_X509(3)|d2i_X509(3)>
31
32=head1 HISTORY
33
34TBA
35
36=cut