summaryrefslogtreecommitdiff
path: root/src/lib/libtls/man/tls_config_set_protocols.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the ability to do tls 1.0 and 1.1 from libtls.beck2023-07-021-9/+3
| | | | | | | | With this change any requests from configurations to request versions of tls before tls 1.2 will use tls 1.2. This prepares us to deprecate tls 1.0 and tls 1.1 support from libssl. ok tb@
* Tweak previous:schwarze2021-01-021-19/+34
| | | | | | | * Do not abuse .Bl -tag for lists without bodies, use .Bl -item instead. * In tagged lists, put bodies into bodies, not into heads. * Add a few missing macros. * Drop some useless quoting.
* Make list of DHE parameters more prominentkn2021-01-021-6/+19
| | | | | | | Follow the previous commit and complete the manual page for consistency; better readable and tags for free. OK tb
* Make the list of supported protocols more prominentkn2020-12-301-5/+15
| | | | | | | | | | Manuals like httpd.conf(5) refer to this for valid protocol strings, but elements inlined into sentences are hard find to spot. Use a list as already done elsewhere in this manual. OK jmc on earlier version Feeback OK tb
* Note in the man page that the default protocols list includes 1.3beck2020-01-221-4/+4
| | | | ok jsing@
* Add support for TLSv1.3 as a protocol to libtls.jsing2020-01-201-6/+7
| | | | | | | This makes tls_config_parse_protocols() recognise and handle "tlsv1.3". If TLSv1.3 is enabled libtls will also request libssl to enable it. ok beck@ tb@
* Document tls_config_set_dheparams().jsing2017-08-121-4/+13
|
* new sentence, new line;jmc2017-08-111-3/+4
|
* Add a tls_config_set_ecdhecurves() function to libtls, which allows thejsing2017-08-101-6/+13
| | | | | | | | | | names of the elliptic curves that may be used during client and server key exchange to be specified. This deprecates tls_config_set_ecdhecurve(), which could only be used to specify a single supported curve. ok beck@
* add HISTORY and AUTHORSschwarze2017-01-281-2/+33
|
* Fix Copyright notices; ok beck@ jsing@ tedu@schwarze2017-01-271-2/+4
|
* split the tls_init(3) that had grown fat to allow healthy future growth;schwarze2017-01-251-0/+146
suggested by jsing@; "i would just chuck it in" jmc@