On Thu, Feb 12, 2015 at 4:48 PM, <
luo...@gmail.com> wrote:
> Hi all
> why Package tls partially implements TLS 1.2? how can see the list that
> it didn't implement?
(This email should really have been sent to golang-nuts, not -dev.)
TLS is a huge specification; everyone only implements bits of it. The
package probably implements all that you need given that it works for
most people.
A few things that aren't supported: SSLv2 format handshakes,
renegotiation, session ID resumption.
> does golang have any plan to support ssl3.0, tls1.0, 1.1 ?
SSLv3, TLS 1.0 and 1.1 are also supported, although SSLv3 is/will be
disabled by default for clients.
Cheers
AGL