Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1083900, Enable TLS 1.2 in the default NSS configuration, r=rrelyea
  • Loading branch information
martinthomson committed Mar 5, 2015
1 parent 9b972e6 commit b5b749a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ssl/sslsock.c
Expand Up @@ -90,12 +90,12 @@ static sslOptions ssl_defaults = {
*/
static SSLVersionRange versions_defaults_stream = {
SSL_LIBRARY_VERSION_3_0,
SSL_LIBRARY_VERSION_TLS_1_0
SSL_LIBRARY_VERSION_TLS_1_2
};

static SSLVersionRange versions_defaults_datagram = {
SSL_LIBRARY_VERSION_TLS_1_1,
SSL_LIBRARY_VERSION_TLS_1_1
SSL_LIBRARY_VERSION_TLS_1_2
};

#define VERSIONS_DEFAULTS(variant) \
Expand Down

0 comments on commit b5b749a

Please sign in to comment.