diff options
Diffstat (limited to 'src/lib/libtls/man/tls_load_file.3')
-rw-r--r-- | src/lib/libtls/man/tls_load_file.3 | 59 |
1 files changed, 57 insertions, 2 deletions
diff --git a/src/lib/libtls/man/tls_load_file.3 b/src/lib/libtls/man/tls_load_file.3 index 113a42a63e..eeebd0339e 100644 --- a/src/lib/libtls/man/tls_load_file.3 +++ b/src/lib/libtls/man/tls_load_file.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: tls_load_file.3,v 1.2 2017/01/27 20:19:51 schwarze Exp $ | 1 | .\" $OpenBSD: tls_load_file.3,v 1.3 2017/01/28 00:59:36 schwarze Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> | 3 | .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> |
4 | .\" Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> | 4 | .\" Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> |
@@ -17,7 +17,7 @@ | |||
17 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 17 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
18 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 18 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
19 | .\" | 19 | .\" |
20 | .Dd $Mdocdate: January 27 2017 $ | 20 | .Dd $Mdocdate: January 28 2017 $ |
21 | .Dt TLS_LOAD_FILE 3 | 21 | .Dt TLS_LOAD_FILE 3 |
22 | .Os | 22 | .Os |
23 | .Sh NAME | 23 | .Sh NAME |
@@ -198,3 +198,58 @@ The other functions return 0 on success or -1 on error. | |||
198 | .Xr tls_config_set_session_id 3 , | 198 | .Xr tls_config_set_session_id 3 , |
199 | .Xr tls_configure 3 , | 199 | .Xr tls_configure 3 , |
200 | .Xr tls_init 3 | 200 | .Xr tls_init 3 |
201 | .Sh HISTORY | ||
202 | .Fn tls_config_set_ca_file , | ||
203 | .Fn tls_config_set_ca_path , | ||
204 | .Fn tls_config_set_cert_file , | ||
205 | .Fn tls_config_set_cert_mem , | ||
206 | .Fn tls_config_set_key_file , | ||
207 | .Fn tls_config_set_key_mem , | ||
208 | and | ||
209 | .Fn tls_config_set_verify_depth | ||
210 | appeared in | ||
211 | .Ox 5.6 | ||
212 | and got their final names in | ||
213 | .Ox 5.7 . | ||
214 | .Pp | ||
215 | .Fn tls_load_file , | ||
216 | .Fn tls_config_set_ca_mem , | ||
217 | and | ||
218 | .Fn tls_config_clear_keys | ||
219 | appeared in | ||
220 | .Ox 5.7 . | ||
221 | .Pp | ||
222 | .Fn tls_config_verify_client | ||
223 | and | ||
224 | .Fn tls_config_verify_client_optional | ||
225 | appeared in | ||
226 | .Ox 5.9 . | ||
227 | .Pp | ||
228 | .Fn tls_config_set_keypair_file | ||
229 | and | ||
230 | .Fn tls_config_set_keypair_mem | ||
231 | appeared in | ||
232 | .Ox 6.0 , | ||
233 | and | ||
234 | .Fn tls_config_add_keypair_file | ||
235 | and | ||
236 | .Fn tls_config_add_keypair_mem | ||
237 | in | ||
238 | .Ox 6.1 . | ||
239 | .Sh AUTHORS | ||
240 | .An Joel Sing Aq Mt jsing@openbsd.org | ||
241 | with contibutions from | ||
242 | .An Ted Unangst Aq Mt tedu@openbsd.org | ||
243 | .Pp | ||
244 | .An -nosplit | ||
245 | .Fn tls_config_verify_client | ||
246 | and | ||
247 | .Fn tls_config_verify_client_optional | ||
248 | were written by | ||
249 | .An Bob Beck Aq Mt beck@openbsd.org . | ||
250 | .Pp | ||
251 | .Fn tls_load_file | ||
252 | and | ||
253 | .Fn tls_config_set_ca_mem | ||
254 | were written by | ||
255 | .An Reyk Floeter Aq Mt reyk@openbsd.org . | ||