diff --git a/doc/go1.5.html b/doc/go1.5.html index a7ff7e57e4..7c3a2f294a 100644 --- a/doc/go1.5.html +++ b/doc/go1.5.html @@ -792,19 +792,28 @@ This change guards against certain attacks.
crypto/tls package
-now defaults to TLS 1.0.
+minimum protocol version now defaults to TLS 1.0.
The old default, SSLv3, is still available through Config if needed.
crypto/tls package
+The crypto/tls package
now supports Signed Certificate Timestamps (SCTs) as specified in RFC 6962.
The server serves them if they are listed in the
Certificate struct,
and the client requests them and exposes them, if present,
in its ConnectionState struct.
-The crytpo/tls server implementation
-will also now always call the
+
+crypto/tls client connection,
+previously only available via the
+OCSPResponse method,
+is now exposed in the ConnectionState struct.
+crypto/tls server implementation
+will now always call the
GetCertificate function in
the Config struct
to select a certificate for the connection when none is supplied.
@@ -813,7 +822,7 @@ to select a certificate for the connection when none is supplied.
crypto/tls package
-can now be rotated (changed periodically during an active connection).
+can now be changed while the server is running.
This is done through the new
SetSessionTicketKeys
method of the