summaryrefslogtreecommitdiff
path: root/src/lib/libtls/man/tls_load_file.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* contibutions -> contributionsjsg2022-01-011-3/+3
|
* zap wonky commas;jmc2021-06-221-5/+5
|
* Clarify tls_config_set_*_file() file I/O semanticskn2021-06-221-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | tls_config_set_*_file(3) do not just set the file paths like tls_config_set_*_path(3) do, they do load the given file(s) into memory directly using tls_config_load_file(). This distinction is important because it means a later tls_connect(3) will not do any file I/O (at least wrt. those files), which is relevant when for example pleding without "[rwc]path" after loading files into memory and before doing tls_connect(3). The manual's current wording made me use the following due to above way of pledging a program: tls_load_file() tls_config_set_ca_mem() tls_unload_file() While in fact a single tls_config_set_ca_file() call does the same. tls_config.c r1.26 (Aug 2016) change the code but forgot to amend the manual as noted by tb, thanks. Feedback OK tb
* expose the default cert file as a function, not a define. it's reallytedu2018-11-291-3/+9
| | | | | | an internal detail of the library, so the string should live inside it, not in the application code. ok jsing
* typo in argument type, from Mario dot Andres dot Campos at gmail dot comschwarze2018-08-211-3/+3
|
* hyphenate DER/PEM-encoded, for consistency;jmc2017-10-081-6/+6
|
* correct function name;jmc2017-08-011-3/+3
| | | | from carlos cardenas
* Document tls_config_set_crl_file() and tls_config_set_crl_mem().jsing2017-07-061-3/+30
| | | | Based on a diff from Jack Burton <jack at saosce dot com dot au>, thanks!
* Document tls_unload_file().jsing2017-05-061-3/+14
|
* tweak previous;jmc2017-01-311-5/+4
|
* Add tls_config_[add|set]keypair_ocsp functions so that ocsp staples may bebeck2017-01-311-12/+85
| | | | | | | | added associated to a keypair used for SNI, and are usable for more than just the "main" certificate. Modify httpd to use this. Bump libtls minor. ok jsing@
* add HISTORY and AUTHORSschwarze2017-01-281-2/+57
|
* Fix Copyright notices; ok beck@ jsing@ tedu@schwarze2017-01-271-2/+5
|
* split the tls_init(3) that had grown fat to allow healthy future growth;schwarze2017-01-251-0/+197
suggested by jsing@; "i would just chuck it in" jmc@