diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-11-30 12:44:41 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-11-30 12:45:16 +0100 |
commit | 56bee4986d1195fe6d05f6357ce43a007bab8071 (patch) | |
tree | 138df60bc165f48d1d826e38e87b591f99d2f1d8 /src | |
parent | e56cf67e6b3f2e87bee42aaa5ab709f479c9e6ca (diff) | |
parent | 7d3b627395582ae7c9d54ebdbc68096d7042162b (diff) |
Merge #9234: torcontrol: Explicitly request RSA1024 private key
7d3b627 torcontrol: Explicitly request RSA1024 private key (Wladimir J. van der Laan)
Diffstat (limited to 'src')
-rw-r--r-- | src/torcontrol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/torcontrol.cpp b/src/torcontrol.cpp index 1ca6b46566..ffb9993f90 100644 --- a/src/torcontrol.cpp +++ b/src/torcontrol.cpp @@ -470,7 +470,7 @@ void TorController::auth_cb(TorControlConnection& _conn, const TorControlReply& // Finally - now create the service if (private_key.empty()) // No private key, generate one - private_key = "NEW:BEST"; + private_key = "NEW:RSA1024"; // Explicitly request RSA1024 - see issue #9214 // Request hidden service, redirect port. // Note that the 'virtual' port doesn't have to be the same as our internal port, but this is just a convenient // choice. TODO; refactor the shutdown sequence some day. |