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