Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / crypto / d2i_X509_REQ.pod
blob91c0c1974b49dbdb3afcbceca19d92e94f9248ce
1 =pod
3 =head1 NAME
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.
8 =head1 SYNOPSIS
10  #include <openssl/x509.h>
12  X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length);
13  int i2d_X509_REQ(X509_REQ *a, unsigned char **pp);
15  X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x);
16  X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x);
18  int i2d_X509_REQ_bio(BIO *bp, X509_REQ *x);
19  int i2d_X509_REQ_fp(FILE *fp, X509_REQ *x);
21 =head1 DESCRIPTION
23 These functions decode and encode a PKCS#10 certificate request.
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.
28 =head1 SEE ALSO
30 L<d2i_X509(3)|d2i_X509(3)>
32 =head1 HISTORY
34 TBA
36 =cut