Minor typo in comment, SSLv3 instead of SSLv4

pull/6/head
Victor Garcia 2016-05-31 14:17:17 +02:00
parent dc8ff81f5a
commit 7cebb559b3
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ func TLSConfigFor(c *Config) (*tls.Config, error) {
}
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.1 because of RC4 cipher usage
MinVersion: tls.VersionTLS12,