7b751fdef38d4ffdf1da1f9ae6a267076dd06088
[openssl.git] / doc / man3 / SSL_CONF_cmd.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CONF_cmd_value_type, SSL_CONF_finish,
6 SSL_CONF_cmd - send configuration command
7
8 =head1 SYNOPSIS
9
10  #include <openssl/ssl.h>
11
12  int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
13  int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
14  int SSL_CONF_finish(SSL_CONF_CTX *cctx);
15
16 =head1 DESCRIPTION
17
18 The function SSL_CONF_cmd() performs configuration operation B<cmd> with
19 optional parameter B<value> on B<ctx>. Its purpose is to simplify application
20 configuration of B<SSL_CTX> or B<SSL> structures by providing a common
21 framework for command line options or configuration files.
22
23 SSL_CONF_cmd_value_type() returns the type of value that B<cmd> refers to.
24
25 The function SSL_CONF_finish() must be called after all configuration
26 operations have been completed. It is used to finalise any operations
27 or to process defaults.
28
29 =head1 SUPPORTED COMMAND LINE COMMANDS
30
31 Currently supported B<cmd> names for command lines (i.e. when the
32 flag B<SSL_CONF_CMDLINE> is set) are listed below. Note: all B<cmd> names
33 are case sensitive. Unless otherwise stated commands can be used by
34 both clients and servers and the B<value> parameter is not used. The default
35 prefix for command line commands is B<-> and that is reflected below.
36
37 =over 4
38
39 =item B<-sigalgs>
40
41 This sets the supported signature algorithms for TLS v1.2. For clients this
42 value is used directly for the supported signature algorithms extension. For
43 servers it is used to determine which signature algorithms to support.
44
45 The B<value> argument should be a colon separated list of signature algorithms
46 in order of decreasing preference of the form B<algorithm+hash>. B<algorithm>
47 is one of B<RSA>, B<DSA> or B<ECDSA> and B<hash> is a supported algorithm
48 OID short name such as B<SHA1>, B<SHA224>, B<SHA256>, B<SHA384> of B<SHA512>.
49 Note: algorithm and hash names are case sensitive.
50
51 If this option is not set then all signature algorithms supported by the
52 OpenSSL library are permissible.
53
54 =item B<-client_sigalgs>
55
56 This sets the supported signature algorithms associated with client
57 authentication for TLS v1.2. For servers the value is used in the supported
58 signature algorithms field of a certificate request. For clients it is
59 used to determine which signature algorithm to with the client certificate.
60 If a server does not request a certificate this option has no effect.
61
62 The syntax of B<value> is identical to B<-sigalgs>. If not set then
63 the value set for B<-sigalgs> will be used instead.
64
65 =item B<-groups>
66
67 This sets the supported groups. For clients, the groups are
68 sent using the supported groups extension. For servers, it is used
69 to determine which group to use. This setting affects groups used for both
70 signatures and key exchange, if applicable. It also affects the preferred
71 key_share sent by a client in a TLSv1.3 compatible connection.
72
73 The B<value> argument is a colon separated list of groups. The group can be
74 either the B<NIST> name (e.g. B<P-256>), some other commonly used name where
75 applicable (e.g. B<X25519>) or an OpenSSL OID name (e.g B<prime256v1>). Group
76 names are case sensitive. The list should be in order of preference with the
77 most preferred group first. The first listed group will be the one used for a
78 key_share by a TLSv1.3 client.
79
80 =item B<-curves>
81
82 This is a synonym for the "-groups" command.
83
84
85 =item B<-named_curve>
86
87 This sets the temporary curve used for ephemeral ECDH modes. Only used by
88 servers
89
90 The B<value> argument is a curve name or the special value B<auto> which
91 picks an appropriate curve based on client and server preferences. The curve
92 can be either the B<NIST> name (e.g. B<P-256>) or an OpenSSL OID name
93 (e.g B<prime256v1>). Curve names are case sensitive.
94
95 =item B<-cipher>
96
97 Sets the cipher suite list to B<value>. Note: syntax checking of B<value> is
98 currently not performed unless a B<SSL> or B<SSL_CTX> structure is
99 associated with B<cctx>.
100
101 =item B<-cert>
102
103 Attempts to use the file B<value> as the certificate for the appropriate
104 context. It currently uses SSL_CTX_use_certificate_chain_file() if an B<SSL_CTX>
105 structure is set or SSL_use_certificate_file() with filetype PEM if an B<SSL>
106 structure is set. This option is only supported if certificate operations
107 are permitted.
108
109 =item B<-key>
110
111 Attempts to use the file B<value> as the private key for the appropriate
112 context. This option is only supported if certificate operations
113 are permitted. Note: if no B<-key> option is set then a private key is
114 not loaded unless the flag B<SSL_CONF_FLAG_REQUIRE_PRIVATE> is set.
115
116 =item B<-dhparam>
117
118 Attempts to use the file B<value> as the set of temporary DH parameters for
119 the appropriate context. This option is only supported if certificate
120 operations are permitted.
121
122 =item B<-record_padding>
123
124 Attempts to pad TLS 1.3 records so that they are a multiple of B<value> in
125 length on send. A B<value> of 0 or 1 turns off padding. Otherwise, the
126 B<value> must be >1 or <=16384.
127
128 =item B<-no_renegotiation>
129
130 Disables all attempts at renegotiation in TLSv1.2 and earlier, same as setting
131 B<SSL_OP_NO_RENEGOTIATION>.
132
133 =item B<-min_protocol>, B<-max_protocol>
134
135 Sets the minimum and maximum supported protocol.
136 Currently supported protocol values are B<SSLv3>, B<TLSv1>,
137 B<TLSv1.1>, B<TLSv1.2> for TLS and B<DTLSv1>, B<DTLSv1.2> for DTLS,
138 and B<None> for no limit.
139 If the either bound is not specified then only the other bound applies,
140 if specified.
141 To restrict the supported protocol versions use these commands rather
142 than the deprecated alternative commands below.
143
144 =item B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>, B<-no_tls1_3>
145
146 Disables protocol support for SSLv3, TLSv1.0, TLSv1.1, TLSv1.2 or TLSv1.3 by
147 setting the corresponding options B<SSL_OP_NO_SSLv3>, B<SSL_OP_NO_TLSv1>,
148 B<SSL_OP_NO_TLSv1_1>, B<SSL_OP_NO_TLSv1_2> and B<SSL_OP_NO_TLSv1_3>
149 respectively. These options are deprecated, instead use B<-min_protocol> and
150 B<-max_protocol>.
151
152 =item B<-bugs>
153
154 Various bug workarounds are set, same as setting B<SSL_OP_ALL>.
155
156 =item B<-comp>
157
158 Enables support for SSL/TLS compression, same as clearing
159 B<SSL_OP_NO_COMPRESSION>.
160 This command was introduced in OpenSSL 1.1.0.
161 As of OpenSSL 1.1.0, compression is off by default.
162
163 =item B<-no_comp>
164
165 Disables support for SSL/TLS compression, same as setting
166 B<SSL_OP_NO_COMPRESSION>.
167 As of OpenSSL 1.1.0, compression is off by default.
168
169 =item B<-no_ticket>
170
171 Disables support for session tickets, same as setting B<SSL_OP_NO_TICKET>.
172
173 =item B<-serverpref>
174
175 Use server and not client preference order when determining which cipher suite,
176 signature algorithm or elliptic curve to use for an incoming connection.
177 Equivalent to B<SSL_OP_CIPHER_SERVER_PREFERENCE>. Only used by servers.
178
179 =item B<-no_resumption_on_reneg>
180
181 set SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION flag. Only used by servers.
182
183 =item B<-legacyrenegotiation>
184
185 permits the use of unsafe legacy renegotiation. Equivalent to setting
186 B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION>.
187
188 =item B<-legacy_server_connect>, B<-no_legacy_server_connect>
189
190 permits or prohibits the use of unsafe legacy renegotiation for OpenSSL
191 clients only. Equivalent to setting or clearing B<SSL_OP_LEGACY_SERVER_CONNECT>.
192 Set by default.
193
194 =item B<-strict>
195
196 enables strict mode protocol handling. Equivalent to setting
197 B<SSL_CERT_FLAG_TLS_STRICT>.
198
199 =back
200
201 =head1 SUPPORTED CONFIGURATION FILE COMMANDS
202
203 Currently supported B<cmd> names for configuration files (i.e. when the
204 flag B<SSL_CONF_FLAG_FILE> is set) are listed below. All configuration file
205 B<cmd> names are case insensitive so B<signaturealgorithms> is recognised
206 as well as B<SignatureAlgorithms>. Unless otherwise stated the B<value> names
207 are also case insensitive.
208
209 Note: the command prefix (if set) alters the recognised B<cmd> values.
210
211 =over 4
212
213 =item B<CipherString>
214
215 Sets the cipher suite list to B<value>. Note: syntax checking of B<value> is
216 currently not performed unless an B<SSL> or B<SSL_CTX> structure is
217 associated with B<cctx>.
218
219 =item B<Certificate>
220
221 Attempts to use the file B<value> as the certificate for the appropriate
222 context. It currently uses SSL_CTX_use_certificate_chain_file() if an B<SSL_CTX>
223 structure is set or SSL_use_certificate_file() with filetype PEM if an B<SSL>
224 structure is set. This option is only supported if certificate operations
225 are permitted.
226
227 =item B<PrivateKey>
228
229 Attempts to use the file B<value> as the private key for the appropriate
230 context. This option is only supported if certificate operations
231 are permitted. Note: if no B<PrivateKey> option is set then a private key is
232 not loaded unless the B<SSL_CONF_FLAG_REQUIRE_PRIVATE> is set.
233
234 =item B<ChainCAFile>, B<ChainCAPath>, B<VerifyCAFile>, B<VerifyCAPath>
235
236 These options indicate a file or directory used for building certificate
237 chains or verifying certificate chains. These options are only supported
238 if certificate operations are permitted.
239
240 =item B<RequestCAFile>
241
242 This option indicates a file containing a set of certificates in PEM form.
243 The subject names of the certificates are sent to the peer in the
244 B<certificate_authorities> extension for TLS 1.3 (in ClientHello or
245 CertificateRequest) or in a certificate request for previous versions or
246 TLS.
247
248 =item B<ServerInfoFile>
249
250 Attempts to use the file B<value> in the "serverinfo" extension using the
251 function SSL_CTX_use_serverinfo_file.
252
253 =item B<DHParameters>
254
255 Attempts to use the file B<value> as the set of temporary DH parameters for
256 the appropriate context. This option is only supported if certificate
257 operations are permitted.
258
259 =item B<RecordPadding>
260
261 Attempts to pad TLS 1.3 records so that they are a multiple of B<value> in
262 length on send. A B<value> of 0 or 1 turns off padding. Otherwise, the
263 B<value> must be >1 or <=16384.
264
265 =item B<NoRenegotiation>
266
267 Disables all attempts at renegotiation in TLSv1.2 and earlier, same as setting
268 B<SSL_OP_NO_RENEGOTIATION>.
269
270 =item B<SignatureAlgorithms>
271
272 This sets the supported signature algorithms for TLS v1.2. For clients this
273 value is used directly for the supported signature algorithms extension. For
274 servers it is used to determine which signature algorithms to support.
275
276 The B<value> argument should be a colon separated list of signature algorithms
277 in order of decreasing preference of the form B<algorithm+hash>. B<algorithm>
278 is one of B<RSA>, B<DSA> or B<ECDSA> and B<hash> is a supported algorithm
279 OID short name such as B<SHA1>, B<SHA224>, B<SHA256>, B<SHA384> of B<SHA512>.
280 Note: algorithm and hash names are case sensitive.
281
282 If this option is not set then all signature algorithms supported by the
283 OpenSSL library are permissible.
284
285 =item B<ClientSignatureAlgorithms>
286
287 This sets the supported signature algorithms associated with client
288 authentication for TLS v1.2. For servers the value is used in the supported
289 signature algorithms field of a certificate request. For clients it is
290 used to determine which signature algorithm to with the client certificate.
291
292 The syntax of B<value> is identical to B<SignatureAlgorithms>. If not set then
293 the value set for B<SignatureAlgorithms> will be used instead.
294
295 =item B<Groups>
296
297 This sets the supported groups. For clients, the groups are
298 sent using the supported groups extension. For servers, it is used
299 to determine which group to use. This setting affects groups used for both
300 signatures and key exchange, if applicable. It also affects the preferred
301 key_share sent by a client in a TLSv1.3 compatible connection.
302
303 The B<value> argument is a colon separated list of groups. The group can be
304 either the B<NIST> name (e.g. B<P-256>), some other commonly used name where
305 applicable (e.g. B<X25519>) or an OpenSSL OID name (e.g B<prime256v1>). Group
306 names are case sensitive. The list should be in order of preference with the
307 most preferred group first. The first listed group will be the one used for a
308 key_share by a TLSv1.3 client.
309
310 =item B<Curves>
311
312 This is a synonym for the "Groups" command.
313
314 =item B<MinProtocol>
315
316 This sets the minimum supported SSL, TLS or DTLS version.
317
318 Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
319 B<TLSv1.2>, B<DTLSv1> and B<DTLSv1.2>.
320 The value B<None> will disable the limit.
321
322 =item B<MaxProtocol>
323
324 This sets the maximum supported SSL, TLS or DTLS version.
325
326 Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
327 B<TLSv1.2>, B<DTLSv1> and B<DTLSv1.2>.
328 The value B<None> will disable the limit.
329
330 =item B<Protocol>
331
332 This can be used to enable or disable certain versions of the SSL,
333 TLS or DTLS protocol.
334
335 The B<value> argument is a comma separated list of supported protocols
336 to enable or disable.
337 If a protocol is preceded by B<-> that version is disabled.
338
339 All protocol versions are enabled by default.
340 You need to disable at least one protocol version for this setting have any
341 effect.
342 Only enabling some protocol versions does not disable the other protocol
343 versions.
344
345 Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
346 B<TLSv1.2>, B<DTLSv1> and B<DTLSv1.2>.
347 The special value B<ALL> refers to all supported versions.
348
349 This can't enable protocols that are disabled using B<MinProtocol>
350 or B<MaxProtocol>, but can disable protocols that are still allowed
351 by them.
352
353 The B<Protocol> command is fragile and deprecated; do not use it.
354 Use B<MinProtocol> and B<MaxProtocol> instead.
355 If you do use B<Protocol>, make sure that the resulting range of enabled
356 protocols has no "holes", e.g. if TLS 1.0 and TLS 1.2 are both enabled, make
357 sure to also leave TLS 1.1 enabled.
358
359 =item B<Options>
360
361 The B<value> argument is a comma separated list of various flags to set.
362 If a flag string is preceded B<-> it is disabled.
363 See the L<SSL_CTX_set_options(3)> function for more details of
364 individual options.
365
366 Each option is listed below. Where an operation is enabled by default
367 the B<-flag> syntax is needed to disable it.
368
369 B<SessionTicket>: session ticket support, enabled by default. Inverse of
370 B<SSL_OP_NO_TICKET>: that is B<-SessionTicket> is the same as setting
371 B<SSL_OP_NO_TICKET>.
372
373 B<Compression>: SSL/TLS compression support, enabled by default. Inverse
374 of B<SSL_OP_NO_COMPRESSION>.
375
376 B<EmptyFragments>: use empty fragments as a countermeasure against a
377 SSL 3.0/TLS 1.0 protocol vulnerability affecting CBC ciphers. It
378 is set by default. Inverse of B<SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS>.
379
380 B<Bugs>: enable various bug workarounds. Same as B<SSL_OP_ALL>.
381
382 B<DHSingle>: enable single use DH keys, set by default. Inverse of
383 B<SSL_OP_DH_SINGLE>. Only used by servers.
384
385 B<ECDHSingle> enable single use ECDH keys, set by default. Inverse of
386 B<SSL_OP_ECDH_SINGLE>. Only used by servers.
387
388 B<ServerPreference> use server and not client preference order when
389 determining which cipher suite, signature algorithm or elliptic curve
390 to use for an incoming connection.  Equivalent to
391 B<SSL_OP_CIPHER_SERVER_PREFERENCE>. Only used by servers.
392
393 B<NoResumptionOnRenegotiation> set
394 B<SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION> flag. Only used by servers.
395
396 B<UnsafeLegacyRenegotiation> permits the use of unsafe legacy renegotiation.
397 Equivalent to B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION>.
398
399 B<UnsafeLegacyServerConnect> permits the use of unsafe legacy renegotiation
400 for OpenSSL clients only. Equivalent to B<SSL_OP_LEGACY_SERVER_CONNECT>.
401 Set by default.
402
403 B<EncryptThenMac>: use encrypt-then-mac extension, enabled by
404 default. Inverse of B<SSL_OP_NO_ENCRYPT_THEN_MAC>: that is,
405 B<-EncryptThenMac> is the same as setting B<SSL_OP_NO_ENCRYPT_THEN_MAC>.
406
407 =item B<VerifyMode>
408
409 The B<value> argument is a comma separated list of flags to set.
410
411 B<Peer> enables peer verification: for clients only.
412
413 B<Request> requests but does not require a certificate from the client.
414 Servers only.
415
416 B<Require> requests and requires a certificate from the client: an error
417 occurs if the client does not present a certificate. Servers only.
418
419 B<Once> requests a certificate from a client only on the initial connection:
420 not when renegotiating. Servers only.
421
422 =item B<ClientCAFile>, B<ClientCAPath>
423
424 A file or directory of certificates in PEM format whose names are used as the
425 set of acceptable names for client CAs. Servers only. This option is only
426 supported if certificate operations are permitted.
427
428 =back
429
430 =head1 SUPPORTED COMMAND TYPES
431
432 The function SSL_CONF_cmd_value_type() currently returns one of the following
433 types:
434
435 =over 4
436
437 =item B<SSL_CONF_TYPE_UNKNOWN>
438
439 The B<cmd> string is unrecognised, this return value can be use to flag
440 syntax errors.
441
442 =item B<SSL_CONF_TYPE_STRING>
443
444 The value is a string without any specific structure.
445
446 =item B<SSL_CONF_TYPE_FILE>
447
448 The value is a file name.
449
450 =item B<SSL_CONF_TYPE_DIR>
451
452 The value is a directory name.
453
454 =item B<SSL_CONF_TYPE_NONE>
455
456 The value string is not used e.g. a command line option which doesn't take an
457 argument.
458
459 =back
460
461 =head1 NOTES
462
463 The order of operations is significant. This can be used to set either defaults
464 or values which cannot be overridden. For example if an application calls:
465
466  SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
467  SSL_CONF_cmd(ctx, userparam, uservalue);
468
469 it will disable SSLv3 support by default but the user can override it. If
470 however the call sequence is:
471
472  SSL_CONF_cmd(ctx, userparam, uservalue);
473  SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
474
475 SSLv3 is B<always> disabled and attempt to override this by the user are
476 ignored.
477
478 By checking the return code of SSL_CONF_cmd() it is possible to query if a
479 given B<cmd> is recognised, this is useful is SSL_CONF_cmd() values are
480 mixed with additional application specific operations.
481
482 For example an application might call SSL_CONF_cmd() and if it returns
483 -2 (unrecognised command) continue with processing of application specific
484 commands.
485
486 Applications can also use SSL_CONF_cmd() to process command lines though the
487 utility function SSL_CONF_cmd_argv() is normally used instead. One way
488 to do this is to set the prefix to an appropriate value using
489 SSL_CONF_CTX_set1_prefix(), pass the current argument to B<cmd> and the
490 following argument to B<value> (which may be NULL).
491
492 In this case if the return value is positive then it is used to skip that
493 number of arguments as they have been processed by SSL_CONF_cmd(). If -2 is
494 returned then B<cmd> is not recognised and application specific arguments
495 can be checked instead. If -3 is returned a required argument is missing
496 and an error is indicated. If 0 is returned some other error occurred and
497 this can be reported back to the user.
498
499 The function SSL_CONF_cmd_value_type() can be used by applications to
500 check for the existence of a command or to perform additional syntax
501 checking or translation of the command value. For example if the return
502 value is B<SSL_CONF_TYPE_FILE> an application could translate a relative
503 pathname to an absolute pathname.
504
505 =head1 EXAMPLES
506
507 Set supported signature algorithms:
508
509  SSL_CONF_cmd(ctx, "SignatureAlgorithms", "ECDSA+SHA256:RSA+SHA256:DSA+SHA256");
510
511 There are various ways to select the supported protocols.
512
513 This set the minimum protocol version to TLSv1, and so disables SSLv3.
514 This is the recommended way to disable protocols.
515
516  SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1");
517
518 The following also disables SSLv3:
519
520  SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
521
522 The following will first enable all protocols, and then disable
523 SSLv3.
524 If no protocol versions were disabled before this has the same effect as
525 "-SSLv3", but if some versions were disables this will re-enable them before
526 disabling SSLv3.
527
528  SSL_CONF_cmd(ctx, "Protocol", "ALL,-SSLv3");
529
530 Only enable TLSv1.2:
531
532  SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1.2");
533  SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");
534
535 This also only enables TLSv1.2:
536
537  SSL_CONF_cmd(ctx, "Protocol", "-ALL,TLSv1.2");
538
539 Disable TLS session tickets:
540
541  SSL_CONF_cmd(ctx, "Options", "-SessionTicket");
542
543 Enable compression:
544
545  SSL_CONF_cmd(ctx, "Options", "Compression");
546
547 Set supported curves to P-256, P-384:
548
549  SSL_CONF_cmd(ctx, "Curves", "P-256:P-384");
550
551 Set automatic support for any elliptic curve for key exchange:
552
553  SSL_CONF_cmd(ctx, "ECDHParameters", "Automatic");
554
555 =head1 RETURN VALUES
556
557 SSL_CONF_cmd() returns 1 if the value of B<cmd> is recognised and B<value> is
558 B<NOT> used and 2 if both B<cmd> and B<value> are used. In other words it
559 returns the number of arguments processed. This is useful when processing
560 command lines.
561
562 A return value of -2 means B<cmd> is not recognised.
563
564 A return value of -3 means B<cmd> is recognised and the command requires a
565 value but B<value> is NULL.
566
567 A return code of 0 indicates that both B<cmd> and B<value> are valid but an
568 error occurred attempting to perform the operation: for example due to an
569 error in the syntax of B<value> in this case the error queue may provide
570 additional information.
571
572 SSL_CONF_finish() returns 1 for success and 0 for failure.
573
574 =head1 SEE ALSO
575
576 L<SSL_CONF_CTX_new(3)>,
577 L<SSL_CONF_CTX_set_flags(3)>,
578 L<SSL_CONF_CTX_set1_prefix(3)>,
579 L<SSL_CONF_CTX_set_ssl_ctx(3)>,
580 L<SSL_CONF_cmd_argv(3)>,
581 L<SSL_CTX_set_options(3)>
582
583 =head1 HISTORY
584
585 SSL_CONF_cmd() was first added to OpenSSL 1.0.2
586
587 B<SSL_OP_NO_SSL2> doesn't have effect since 1.1.0, but the macro is retained
588 for backwards compatibility.
589
590 B<SSL_CONF_TYPE_NONE> was first added to OpenSSL 1.1.0. In earlier versions of
591 OpenSSL passing a command which didn't take an argument would return
592 B<SSL_CONF_TYPE_UNKNOWN>.
593
594 B<MinProtocol> and B<MaxProtocol> where added in OpenSSL 1.1.0.
595
596 =head1 COPYRIGHT
597
598 Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved.
599
600 Licensed under the OpenSSL license (the "License").  You may not use
601 this file except in compliance with the License.  You can obtain a copy
602 in the file LICENSE in the source distribution or at
603 L<https://www.openssl.org/source/license.html>.
604
605 =cut