Index: doc/tls.html
==================================================================
--- doc/tls.html
+++ doc/tls.html
@@ -271,18 +271,24 @@
sbits n
The number of bits used for the session key.
cipher cipher
The current cipher in use between the client and
server channels.
- validation result
- Certificate validation result.
+ verificationresult
+ Certificate verification result.
alpn protocol
The protocol selected after Application-Layer Protocol
Negotiation (ALPN).
protocol value
The protocol version used for the connection:
SSLv2, SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3, or unknown
+ signature_hash string
+ The signature hash value.
+ signature_type type
+ The signature type value.
+ ca_names list
+ List of the Certificate Authorities used to create the certificate.
tls::connection
channel
@@ -360,11 +366,12 @@
will be listed.
tls::protocols
Returns a list of supported protocols. Valid values are:
ssl2, ssl3, tls1, tls1.1, tls1.2,
- and tls1.3.
+ and tls1.3. Exact list depends on OpenSSL version and
+ compile time flags.
tls::version
Returns the OpenSSL version string.
@@ -396,13 +403,14 @@
alpn protocol
- This form of callback is invoked when server selects the first
- -alpn specified protocol common to the client and server. If none,
- first client one is used.
+ For servers, this form of callback is invoked when the client ALPN
+ header is received and the first -alpn specified protocol common to
+ the both the client and server is selected. If none, the first
+ client specified protocol is used.