Commit 7cebb559 authored by Victor Garcia's avatar Victor Garcia

Minor typo in comment, SSLv3 instead of SSLv4

parent dc8ff81f
...@@ -63,7 +63,7 @@ func TLSConfigFor(c *Config) (*tls.Config, error) { ...@@ -63,7 +63,7 @@ func TLSConfigFor(c *Config) (*tls.Config, error) {
} }
tlsConfig := &tls.Config{ tlsConfig := &tls.Config{
// Can't use SSLv4 because of POODLE and BEAST // Can't use SSLv3 because of POODLE and BEAST
// Can't use TLSv1.0 because of POODLE and BEAST using CBC cipher // Can't use TLSv1.0 because of POODLE and BEAST using CBC cipher
// Can't use TLSv1.1 because of RC4 cipher usage // Can't use TLSv1.1 because of RC4 cipher usage
MinVersion: tls.VersionTLS12, MinVersion: tls.VersionTLS12,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment