diff options
Diffstat (limited to 'src/lib/libcrypto/man/POLICYINFO_new.3')
-rw-r--r-- | src/lib/libcrypto/man/POLICYINFO_new.3 | 218 |
1 files changed, 0 insertions, 218 deletions
diff --git a/src/lib/libcrypto/man/POLICYINFO_new.3 b/src/lib/libcrypto/man/POLICYINFO_new.3 deleted file mode 100644 index 52c004414e..0000000000 --- a/src/lib/libcrypto/man/POLICYINFO_new.3 +++ /dev/null | |||
@@ -1,218 +0,0 @@ | |||
1 | .\" $OpenBSD: POLICYINFO_new.3,v 1.11 2023/05/14 08:03:57 tb Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org> | ||
4 | .\" | ||
5 | .\" Permission to use, copy, modify, and distribute this software for any | ||
6 | .\" purpose with or without fee is hereby granted, provided that the above | ||
7 | .\" copyright notice and this permission notice appear in all copies. | ||
8 | .\" | ||
9 | .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | .\" | ||
17 | .Dd $Mdocdate: May 14 2023 $ | ||
18 | .Dt POLICYINFO_NEW 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm POLICYINFO_new , | ||
22 | .Nm POLICYINFO_free , | ||
23 | .Nm CERTIFICATEPOLICIES_new , | ||
24 | .Nm CERTIFICATEPOLICIES_free , | ||
25 | .Nm POLICYQUALINFO_new , | ||
26 | .Nm POLICYQUALINFO_free , | ||
27 | .Nm USERNOTICE_new , | ||
28 | .Nm USERNOTICE_free , | ||
29 | .Nm NOTICEREF_new , | ||
30 | .Nm NOTICEREF_free , | ||
31 | .Nm POLICY_MAPPING_new , | ||
32 | .Nm POLICY_MAPPING_free , | ||
33 | .Nm POLICY_CONSTRAINTS_new , | ||
34 | .Nm POLICY_CONSTRAINTS_free | ||
35 | .Nd X.509 certificate policies | ||
36 | .Sh SYNOPSIS | ||
37 | .In openssl/x509v3.h | ||
38 | .Ft POLICYINFO * | ||
39 | .Fn POLICYINFO_new void | ||
40 | .Ft void | ||
41 | .Fn POLICYINFO_free "POLICYINFO *pi" | ||
42 | .Ft CERTIFICATEPOLICIES * | ||
43 | .Fn CERTIFICATEPOLICIES_new void | ||
44 | .Ft void | ||
45 | .Fn CERTIFICATEPOLICIES_free "CERTIFICATEPOLICIES *pis" | ||
46 | .Ft POLICYQUALINFO * | ||
47 | .Fn POLICYQUALINFO_new void | ||
48 | .Ft void | ||
49 | .Fn POLICYQUALINFO_free "POLICYQUALINFO *pqi" | ||
50 | .Ft USERNOTICE * | ||
51 | .Fn USERNOTICE_new void | ||
52 | .Ft void | ||
53 | .Fn USERNOTICE_free "USERNOTICE *usernotice" | ||
54 | .Ft NOTICEREF * | ||
55 | .Fn NOTICEREF_new void | ||
56 | .Ft void | ||
57 | .Fn NOTICEREF_free "NOTICEREF *noticeref" | ||
58 | .Ft POLICY_MAPPING * | ||
59 | .Fn POLICY_MAPPING_new void | ||
60 | .Ft void | ||
61 | .Fn POLICY_MAPPING_free "POLICY_MAPPING *pm" | ||
62 | .Ft POLICY_CONSTRAINTS * | ||
63 | .Fn POLICY_CONSTRAINTS_new void | ||
64 | .Ft void | ||
65 | .Fn POLICY_CONSTRAINTS_free "POLICY_CONSTRAINTS *pc" | ||
66 | .Sh DESCRIPTION | ||
67 | X.509 CA and end entity certificates can optionally indicate | ||
68 | restrictions on their intended use. | ||
69 | .Pp | ||
70 | .Fn POLICYINFO_new | ||
71 | allocates and initializes an empty | ||
72 | .Vt POLICYINFO | ||
73 | object, representing an ASN.1 | ||
74 | .Vt PolicyInformation | ||
75 | structure defined in RFC 5280 section 4.2.1.4. | ||
76 | It can hold a policy identifier and optional advisory qualifiers. | ||
77 | .Fn POLICYINFO_free | ||
78 | frees | ||
79 | .Fa pi . | ||
80 | .Pp | ||
81 | .Fn CERTIFICATEPOLICIES_new | ||
82 | allocates and initializes an empty | ||
83 | .Vt CERTIFICATEPOLICIES | ||
84 | object, which is a | ||
85 | .Vt STACK_OF(POLICYINFO) | ||
86 | and represents an ASN.1 | ||
87 | .Vt CertificatePolicies | ||
88 | structure defined in RFC 5280 section 4.2.1.4. | ||
89 | It can be used by | ||
90 | .Vt X509 | ||
91 | objects, both by CA certificates and end entity certificates. | ||
92 | .Fn CERTIFICATEPOLICIES_free | ||
93 | frees | ||
94 | .Fa pis . | ||
95 | .Pp | ||
96 | .Fn POLICYQUALINFO_new | ||
97 | allocates and initializes an empty | ||
98 | .Vt POLICYQUALINFO | ||
99 | object, representing an ASN.1 | ||
100 | .Vt PolicyQualifierInfo | ||
101 | structure defined in RFC 5280 section 4.2.1.4. | ||
102 | It can be used in | ||
103 | .Vt POLICYINFO | ||
104 | and it can hold either a uniform resource identifier of a certification | ||
105 | practice statement published by the CA, or a pointer to a | ||
106 | .Vt USERNOTICE | ||
107 | object, or arbitrary other information. | ||
108 | .Fn POLICYQUALINFO_free | ||
109 | frees | ||
110 | .Fa pqi . | ||
111 | .Pp | ||
112 | .Fn USERNOTICE_new | ||
113 | allocates and initializes an empty | ||
114 | .Vt USERNOTICE | ||
115 | object, representing an ASN.1 | ||
116 | .Vt UserNotice | ||
117 | structure defined in RFC 5280 section 4.2.1.4. | ||
118 | It can be used in | ||
119 | .Vt POLICYQUALINFO | ||
120 | and it can hold either an | ||
121 | .Vt ASN1_STRING | ||
122 | intended for display to the user or a pointer to a | ||
123 | .Vt NOTICEREF | ||
124 | object. | ||
125 | .Fn NOTICEREF_free | ||
126 | frees | ||
127 | .Fa usernotice . | ||
128 | .Pp | ||
129 | .Fn NOTICEREF_new | ||
130 | allocates and initializes an empty | ||
131 | .Vt NOTICEREF | ||
132 | object, representing an ASN.1 | ||
133 | .Vt NoticeReference | ||
134 | structure defined in RFC 5280 section 4.2.1.4. | ||
135 | It can be used in | ||
136 | .Vt USERNOTICE | ||
137 | and can hold an organization name and a stack of notice numbers. | ||
138 | .Fn NOTICEREF_free | ||
139 | frees | ||
140 | .Fa noticeref . | ||
141 | .Pp | ||
142 | .Fn POLICY_MAPPING_new | ||
143 | allocates and initializes an empty | ||
144 | .Vt POLICY_MAPPING | ||
145 | object, representing an ASN.1 | ||
146 | .Vt PolicyMappings | ||
147 | structure defined in RFC 5280 section 4.2.1.5. | ||
148 | It can be used in | ||
149 | .Vt X509 | ||
150 | CA certificates and can hold a list of pairs of policy identifiers, | ||
151 | declaring one of the policies in each pair as equivalent to the | ||
152 | other. | ||
153 | .Fn POLICY_MAPPING_free | ||
154 | frees | ||
155 | .Fa pm . | ||
156 | .Pp | ||
157 | .Fn POLICY_CONSTRAINTS_new | ||
158 | allocates and initializes an empty | ||
159 | .Vt POLICY_CONSTRAINTS | ||
160 | object, representing an ASN.1 | ||
161 | .Vt PolicyConstraints | ||
162 | structure defined in RFC 5280 section 4.2.1.11. | ||
163 | It can be used in | ||
164 | .Vt X509 | ||
165 | CA certificates to restrict policy mapping and/or to require explicit | ||
166 | certificate policies in subsequent intermediate certificates in the | ||
167 | certification path. | ||
168 | .Fn POLICY_CONSTRAINTS_free | ||
169 | frees | ||
170 | .Fa pc . | ||
171 | .Sh RETURN VALUES | ||
172 | The constructor functions return a new object of the respective | ||
173 | type or | ||
174 | .Dv NULL | ||
175 | if an error occurs. | ||
176 | .Sh SEE ALSO | ||
177 | .Xr BASIC_CONSTRAINTS_new 3 , | ||
178 | .Xr d2i_POLICYINFO 3 , | ||
179 | .Xr NAME_CONSTRAINTS_new 3 , | ||
180 | .Xr X509_EXTENSION_new 3 , | ||
181 | .Xr X509_get_extension_flags 3 , | ||
182 | .Xr X509_new 3 | ||
183 | .Sh STANDARDS | ||
184 | RFC 5280: Internet X.509 Public Key Infrastructure Certificate and | ||
185 | Certificate Revocation List (CRL) Profile: | ||
186 | .Bl -dash -compact | ||
187 | .It | ||
188 | section 4.2.1.4: Certificate Policies | ||
189 | .It | ||
190 | section 4.2.1.5: Policy Mappings | ||
191 | .It | ||
192 | section 4.2.1.11: Policy Constraints | ||
193 | .El | ||
194 | .Sh HISTORY | ||
195 | .Fn POLICYINFO_new , | ||
196 | .Fn POLICYINFO_free , | ||
197 | .Fn CERTIFICATEPOLICIES_new , | ||
198 | .Fn CERTIFICATEPOLICIES_free , | ||
199 | .Fn POLICYQUALINFO_new , | ||
200 | .Fn POLICYQUALINFO_free , | ||
201 | .Fn USERNOTICE_new , | ||
202 | .Fn USERNOTICE_free , | ||
203 | .Fn NOTICEREF_new , | ||
204 | and | ||
205 | .Fn NOTICEREF_free | ||
206 | first appeared in OpenSSL 0.9.3 and have been available since | ||
207 | .Ox 2.6 . | ||
208 | .Pp | ||
209 | .Fn POLICY_MAPPING_new , | ||
210 | .Fn POLICY_MAPPING_free , | ||
211 | .Fn POLICY_CONSTRAINTS_new , | ||
212 | and | ||
213 | .Fn POLICY_CONSTRAINTS_free | ||
214 | first appeared in OpenSSL 0.9.8 and have been available since | ||
215 | .Ox 4.5 . | ||
216 | .Sh BUGS | ||
217 | This is a lot of nested data structures, but most of them are | ||
218 | designed to have almost no effect. | ||