1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
.\" $OpenBSD: DIST_POINT_new.3,v 1.2 2016/12/25 22:15:10 schwarze Exp $
.\"
.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: December 25 2016 $
.Dt DIST_POINT_NEW 3
.Os
.Sh NAME
.Nm DIST_POINT_new ,
.Nm DIST_POINT_free ,
.Nm CRL_DIST_POINTS_new ,
.Nm CRL_DIST_POINTS_free ,
.Nm DIST_POINT_NAME_new ,
.Nm DIST_POINT_NAME_free ,
.Nm ISSUING_DIST_POINT_new ,
.Nm ISSUING_DIST_POINT_free
.Nd X.509 CRL distribution point extensions
.Sh SYNOPSIS
.In openssl/x509v3.h
.Ft DIST_POINT *
.Fn DIST_POINT_new void
.Ft void
.Fn DIST_POINT_free "DIST_POINT *dp"
.Ft CRL_DIST_POINTS *
.Fn CRL_DIST_POINTS_new void
.Ft void
.Fn CRL_DIST_POINTS_free "CRL_DIST_POINTS *dps"
.Ft DIST_POINT_NAME *
.Fn DIST_POINT_NAME_new void
.Ft void
.Fn DIST_POINT_NAME_free "DIST_POINT_NAME *name"
.Ft ISSUING_DIST_POINT *
.Fn ISSUING_DIST_POINT_new void
.Ft void
.Fn ISSUING_DIST_POINT_free "ISSUING_DIST_POINT *dp"
.Sh DESCRIPTION
Using the CRL distribution point extension, a certificate can specify
where to obtain certificate revocation lists that might later revoke it.
.Pp
.Fn DIST_POINT_new
allocates and initializes an empty
.Vt DIST_POINT
object, representing an ASN.1
.Vt DistributionPoint
structure defined in RFC 5280 section 4.2.1.13.
It can hold issuer names, distribution point names, and reason flags.
.Fn DIST_POINT_free
frees
.Fa dp .
.Pp
.Fn CRL_DIST_POINTS_new
allocates and initializes an empty
.Vt CRL_DIST_POINTS
object, which is a
.Vt STACK_OF(DIST_POINT)
and represents the ASN.1
.Vt CRLDistributionPoints
structure defined in RFC 5280 section 4.2.1.13.
It can be used as an extension in
.Vt X509
and in
.Vt X509_CRL
objects.
.Fn CRL_DIST_POINTS_free
frees
.Fa dps .
.Pp
.Fn DIST_POINT_NAME_new
allocates and initializes an empty
.Vt DIST_POINT_NAME
object, representing an ASN.1
.Vt DistributionPointName
structure defined in RFC 5280 section 4.2.1.13.
It is used by the
.Vt DIST_POINT
and
.Vt ISSUING_DIST_POINT
objects and can hold multiple names, each representing a different
way to obtain the same CRL.
.Fn DIST_POINT_NAME_free
frees
.Fa name .
.Pp
.Fn ISSUING_DIST_POINT_new
allocates and initializes an empty
.Vt ISSUING_DIST_POINT
object, representing an ASN.1
.Vt IssuingDistributionPoint
structure defined in RFC 5280 section 5.2.5.
Using this extension, a CRL can specify which distribution point
it was issued from and which kinds of certificates and revocation
reasons it covers.
.Fn ISSUING_DIST_POINT_free
frees
.Fa dp .
.Sh RETURN VALUES
.Fn DIST_POINT_new ,
.Fn CRL_DIST_POINTS_new ,
.Fn DIST_POINT_NAME_new ,
and
.Fn ISSUING_DIST_POINT_new
return the new
.Vt DIST_POINT ,
.Vt CRL_DIST_POINTS ,
.Vt DIST_POINT_NAME ,
or
.Vt ISSUING_DIST_POINT
object, respectively, or
.Dv NULL
if an error occurs.
.Sh SEE ALSO
.Xr GENERAL_NAMES_new 3 ,
.Xr X509_CRL_new 3 ,
.Xr X509_EXTENSION_new 3 ,
.Xr X509_NAME_new 3 ,
.Xr X509_new 3
.Sh STANDARDS
RFC 5280: Internet X.509 Public Key Infrastructure Certificate and
Certificate Revocation List (CRL) Profile:
.Bl -dash -compact
.It
section 4.2.1.13: CRL Distribution Points
.It
section 5.2.5: Issuing Distribution Point
.El
|