diff options
Diffstat (limited to 'src/lib/libcrypto/man/d2i_X509_REQ.3')
-rw-r--r-- | src/lib/libcrypto/man/d2i_X509_REQ.3 | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/d2i_X509_REQ.3 b/src/lib/libcrypto/man/d2i_X509_REQ.3 new file mode 100644 index 0000000000..c69cd00fb1 --- /dev/null +++ b/src/lib/libcrypto/man/d2i_X509_REQ.3 | |||
@@ -0,0 +1,53 @@ | |||
1 | .Dd $Mdocdate: November 4 2016 $ | ||
2 | .Dt D2I_X509_REQ 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm d2i_X509_REQ , | ||
6 | .Nm i2d_X509_REQ , | ||
7 | .Nm d2i_X509_REQ_bio , | ||
8 | .Nm d2i_X509_REQ_fp , | ||
9 | .Nm i2d_X509_REQ_bio , | ||
10 | .Nm i2d_X509_REQ_fp | ||
11 | .Nd PKCS#10 certificate request functions | ||
12 | .Sh SYNOPSIS | ||
13 | .In openssl/x509.h | ||
14 | .Ft X509_REQ * | ||
15 | .Fo d2i_X509_REQ | ||
16 | .Fa "X509_REQ **a" | ||
17 | .Fa "const unsigned char **pp" | ||
18 | .Fa "long length" | ||
19 | .Fc | ||
20 | .Ft int | ||
21 | .Fo i2d_X509_REQ | ||
22 | .Fa "X509_REQ *a" | ||
23 | .Fa "unsigned char **pp" | ||
24 | .Fc | ||
25 | .Ft X509_REQ * | ||
26 | .Fo d2i_X509_REQ_bio | ||
27 | .Fa "BIO *bp" | ||
28 | .Fa "X509_REQ **x" | ||
29 | .Fc | ||
30 | .Ft X509_REQ * | ||
31 | .Fo d2i_X509_REQ_fp | ||
32 | .Fa "FILE *fp" | ||
33 | .Fa "X509_REQ **x" | ||
34 | .Fc | ||
35 | .Ft int | ||
36 | .Fo i2d_X509_REQ_bio | ||
37 | .Fa "BIO *bp" | ||
38 | .Fa "X509_REQ *x" | ||
39 | .Fc | ||
40 | .Ft int | ||
41 | .Fo i2d_X509_REQ_fp | ||
42 | .Fa "FILE *fp" | ||
43 | .Fa "X509_REQ *x" | ||
44 | .Fc | ||
45 | .Sh DESCRIPTION | ||
46 | These functions decode and encode a PKCS#10 certificate request. | ||
47 | .Pp | ||
48 | Otherwise these behave in a way similar to | ||
49 | .Xr d2i_X509 3 | ||
50 | and | ||
51 | .Xr i2d_X509 3 . | ||
52 | .Sh SEE ALSO | ||
53 | .Xr d2i_X509 3 | ||