diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-01-09 16:40:42 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-01-09 16:40:42 -0500 |
commit | 1e5d66997bb6efae378cf8783a0b07c12dd7146f (patch) | |
tree | 80ecac0444349f9044aaca6bf1df1ef481e4e6f8 /src/common | |
parent | 838ec086beeb83d10e1c50b2027fe7509e153c8c (diff) | |
parent | c78a314e95ef7f0d05e9d58066ee6bf6795ee9d7 (diff) | |
download | tor-1e5d66997bb6efae378cf8783a0b07c12dd7146f.tar.gz tor-1e5d66997bb6efae378cf8783a0b07c12dd7146f.zip |
Merge remote-tracking branch 'origin/maint-0.2.2'
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index ac6b74fa83..832f74418f 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -1160,15 +1160,10 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime, } #if 0 - /* Tell OpenSSL to only use TLS1. This would actually break compatibility - * with clients that are configured to use SSLv23_method(), so we should - * probably never use it. - */ - /* XXX wanoskarnet says this comment is bunk -- that even if we turn - * this line on, clients configured to use SSLv23 would still able to - * talk to us. But he also says it's ok to leave it out. I suggest we - * delete this whole clause (the one that's #if 0'ed out). I'll leave - * it in place until Nick expresses an opinion. -RD */ + /* Tell OpenSSL to only use TLS1. This may have subtly different results + * from SSLv23_method() with SSLv2 and SSLv3 disabled, so we need to do some + * investigation before we consider adjusting it. It should be compatible + * with existing Tors. */ if (!(result->ctx = SSL_CTX_new(TLSv1_method()))) goto error; #endif |