From 9dbdfca3fcaa1f59041e7f5c257bba353bbab0b7 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 20 May 2003 02:51:38 +0000 Subject: [PATCH] Add docs for use of key_file and cert_file parameters. --- Doc/lib/libhttplib.tex | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index 156e74bfeaa2..810cf9cb7312 100644 --- a/Doc/lib/libhttplib.tex +++ b/Doc/lib/libhttplib.tex @@ -41,9 +41,14 @@ the server at the same host and port: \end{verbatim} \end{classdesc} -\begin{classdesc}{HTTPSConnection}{host\optional{, port}} +\begin{classdesc}{HTTPSConnection}{host\optional{, port, key_file, cert_file}} A subclass of \class{HTTPConnection} that uses SSL for communication with secure servers. Default port is \code{443}. +\var{keyfile} is +the name of a PEM formatted file that contains your private +key. \var{certfile} is a PEM formatted certificate chain file. + +\warning{This does not do any certificate verification!} \end{classdesc} The following exceptions are raised as appropriate: -- 2.47.3