]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
some documentation updates.
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 12 Nov 2005 10:59:28 +0000 (10:59 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 12 Nov 2005 10:59:28 +0000 (10:59 +0000)
doc/gnutls.texi
lib/gnutls_state.c
lib/gnutls_x509.c
src/certtool.gaa

index 19b6f0daffa1b1f6ad0ce47b5f6b661462107f41..c711c6ed2802f8286016ba58e843c26baad75234 100644 (file)
@@ -671,10 +671,18 @@ may request a certificate from the client --- using the
 @ref{gnutls_certificate_server_set_request} function. If a
 certificate is to be requested from the client during the handshake,
 the server will send a certificate request message that contains a
-list of acceptable certificate signers. The client may then send a
-certificate, signed by one of the server's acceptable signers. In
-@acronym{GnuTLS} the server's acceptable signers list is constructed
-using the trusted CA certificates in the credentials structure.
+list of acceptable certificate signers. In @acronym{GnuTLS} the certificate
+signers list is constructed using the trusted Certificate Authorities by the 
+server. That is the ones set using
+@itemize
+@item @ref{gnutls_certificate_set_x509_trust_file}
+@item @ref{gnutls_certificate_set_x509_trust_mem}
+@end itemize
+
+Sending of the names of the CAs can be controlled using 
+@ref{gnutls_certificate_send_x509_rdn_sequence}. The client, then, 
+may send a certificate, signed by one of the server's acceptable 
+signers. 
 
 @subsection Resuming Sessions
 @anchor{resume}
index 774c5a28050e4bf812675be1803b230cad7b8126..b8c258de9d3ab8149db7598d6c13c8c3a576cba2 100644 (file)
@@ -615,7 +615,7 @@ gnutls_openpgp_send_key (gnutls_session_t session,
 }
 
 /**
-  * gnutls_certificate_send_x509_rdn_sequence - This function will order gnutls to or not to send the x.509 rdn sequence
+  * gnutls_certificate_send_x509_rdn_sequence - This function will order gnutls to send or not the x.509 rdn sequence
   * @session: is a pointer to a #gnutls_session_t structure.
   * @status: is 0 or 1
   *
index f7e02229371d8523f4a1bc4fee85db03e64d8a1a..7c78a6e630827eb2f813fa47257045d301a5b574 100644 (file)
@@ -1466,8 +1466,8 @@ gnutls_certificate_set_x509_trust (gnutls_certificate_credentials_t res,
   * gnutls_certificate_verify_peers2().
   * This function may be called multiple times.
   *
-  * In case of a server the CAs set here will be sent to the client if
-  * a certificate request is sent. This can be disabled using
+  * In case of a server the names of the CAs set here will be sent to the 
+  * client if a certificate request is sent. This can be disabled using
   * gnutls_certificate_send_x509_rdn_sequence().
   *
   * Returns the number of certificates processed or a negative
index 78003ba01b5f1f6c2b822eb87704089a8520d0e6..5131c49e7b09d53b79b55f73902b030dfb1c370c 100644 (file)
@@ -97,7 +97,7 @@ option (bits) INT "BITS" { $bits = $1 } "specify the number of bits for key gene
 option (outfile) STR "FILE" { $outfile = $1 } "Output file."
 
 #char *infile;
-option (infile) STR "FILE" { $infile = $1 } "Output file."
+option (infile) STR "FILE" { $infile = $1 } "Input file."
 
 #char *template;
 option (template) STR "FILE" { $template = $1 } "Template file to use for non interactive operation."