diff options
author | Roger Dingledine <arma@torproject.org> | 2007-11-07 15:33:14 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-11-07 15:33:14 +0000 |
commit | 7b826f8fe47f20d784f42bb3f04c4597635c801f (patch) | |
tree | 83604874f2dc2d200e71fabc1c16ae3bf03238fe /src/common | |
parent | 381619a9734061573acc33b1e8e48f98c8c4b193 (diff) | |
download | tor-7b826f8fe47f20d784f42bb3f04c4597635c801f.tar.gz tor-7b826f8fe47f20d784f42bb3f04c4597635c801f.zip |
a note from steven about how to set up a private test network
without link encryption.
svn:r12410
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index d6a0d8488e..4b46f9d9d2 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -343,6 +343,10 @@ tor_tls_create_certificate(crypto_pk_env_t *rsa, */ #define CIPHER_LIST (TLS1_TXT_DHE_RSA_WITH_AES_128_SHA ":" \ SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA) +/* Note: for setting up your own private testing network with link + * crypto disabled, set your cipher list to SSL3_TXT_RSA_NULL_SHA. + * If you do this, you won't be able to communicate with any of the + * "real" Tors, though. */ #else #error "Tor requires OpenSSL version 0.9.7 or later, for AES support." #endif |