1d2i_X509_REQ(3) OpenSSL d2i_X509_REQ(3)
2
3
4
6 d2i_X509_REQ, i2d_X509_REQ, d2i_X509_REQ_bio, d2i_X509_REQ_fp,
7 i2d_X509_REQ_bio, i2d_X509_REQ_fp - PKCS#10 certificate request
8 functions.
9
11 #include <openssl/x509.h>
12
13 X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length);
14 int i2d_X509_REQ(X509_REQ *a, unsigned char **pp);
15
16 X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x);
17 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x);
18
19 int i2d_X509_REQ_bio(BIO *bp, X509_REQ *x);
20 int i2d_X509_REQ_fp(FILE *fp, X509_REQ *x);
21
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 d2i_X509(3) manual page.
27
29 d2i_X509(3)
30
32 TBA
33
34
35
361.0.0e 2009-09-12 d2i_X509_REQ(3)