1*2175Sjp161948=pod 2*2175Sjp161948 3*2175Sjp161948=head1 NAME 4*2175Sjp161948 5*2175Sjp161948d2i_X509_REQ, i2d_X509_REQ, d2i_X509_REQ_bio, d2i_X509_REQ_fp, 6*2175Sjp161948i2d_X509_REQ_bio, i2d_X509_REQ_fp - PKCS#10 certificate request functions. 7*2175Sjp161948 8*2175Sjp161948=head1 SYNOPSIS 9*2175Sjp161948 10*2175Sjp161948 #include <openssl/x509.h> 11*2175Sjp161948 12*2175Sjp161948 X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length); 13*2175Sjp161948 int i2d_X509_REQ(X509_REQ *a, unsigned char **pp); 14*2175Sjp161948 15*2175Sjp161948 X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x); 16*2175Sjp161948 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x); 17*2175Sjp161948 18*2175Sjp161948 int i2d_X509_REQ_bio(X509_REQ *x, BIO *bp); 19*2175Sjp161948 int i2d_X509_REQ_fp(X509_REQ *x, FILE *fp); 20*2175Sjp161948 21*2175Sjp161948=head1 DESCRIPTION 22*2175Sjp161948 23*2175Sjp161948These functions decode and encode a PKCS#10 certificate request. 24*2175Sjp161948 25*2175Sjp161948Othewise these behave in a similar way to d2i_X509() and i2d_X509() 26*2175Sjp161948described in the L<d2i_X509(3)|d2i_X509(3)> manual page. 27*2175Sjp161948 28*2175Sjp161948=head1 SEE ALSO 29*2175Sjp161948 30*2175Sjp161948L<d2i_X509(3)|d2i_X509(3)> 31*2175Sjp161948 32*2175Sjp161948=head1 HISTORY 33*2175Sjp161948 34*2175Sjp161948TBA 35*2175Sjp161948 36*2175Sjp161948=cut 37