Dr. Stephen Henson | 842d8e2 | 2002-10-06 12:34:06 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Dr. Stephen Henson | 4ec0448 | 2002-10-06 12:40:31 +0000 | [diff] [blame] | 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. |
Dr. Stephen Henson | 842d8e2 | 2002-10-06 12:34:06 +0000 | [diff] [blame] | 7 | |
| 8 | =head1 SYNOPSIS |
| 9 | |
| 10 | #include <openssl/x509.h> |
| 11 | |
Nils Larsch | 0d2848b | 2005-07-13 22:01:33 +0000 | [diff] [blame] | 12 | X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length); |
Dr. Stephen Henson | 842d8e2 | 2002-10-06 12:34:06 +0000 | [diff] [blame] | 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 | |
Dr. Stephen Henson | 94480b5 | 2009-09-12 23:34:41 +0000 | [diff] [blame] | 18 | int i2d_X509_REQ_bio(BIO *bp, X509_REQ *x); |
| 19 | int i2d_X509_REQ_fp(FILE *fp, X509_REQ *x); |
Dr. Stephen Henson | 842d8e2 | 2002-10-06 12:34:06 +0000 | [diff] [blame] | 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 |