mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Maintain separate server and client identity keys when appropriate.
Fixes a bug described in ticket #988.
This commit is contained in:
+4
-3
@@ -1552,7 +1552,8 @@ dirserv_regenerate_directory(void)
|
||||
{
|
||||
char *new_directory=NULL;
|
||||
|
||||
if (dirserv_dump_directory_to_string(&new_directory, get_identity_key())) {
|
||||
if (dirserv_dump_directory_to_string(&new_directory,
|
||||
get_server_identity_key())) {
|
||||
log_warn(LD_BUG, "Error creating directory.");
|
||||
tor_free(new_directory);
|
||||
return NULL;
|
||||
@@ -1582,7 +1583,7 @@ generate_runningrouters(void)
|
||||
char digest[DIGEST_LEN];
|
||||
char published[ISO_TIME_LEN+1];
|
||||
size_t len;
|
||||
crypto_pk_env_t *private_key = get_identity_key();
|
||||
crypto_pk_env_t *private_key = get_server_identity_key();
|
||||
char *identity_pkey; /* Identity key, DER64-encoded. */
|
||||
size_t identity_pkey_len;
|
||||
|
||||
@@ -2710,7 +2711,7 @@ generate_v2_networkstatus_opinion(void)
|
||||
smartlist_t *routers = NULL;
|
||||
digestmap_t *omit_as_sybil = NULL;
|
||||
|
||||
private_key = get_identity_key();
|
||||
private_key = get_server_identity_key();
|
||||
|
||||
if (resolve_my_address(LOG_WARN, options, &addr, &hostname)<0) {
|
||||
log_warn(LD_NET, "Couldn't resolve my hostname");
|
||||
|
||||
Reference in New Issue
Block a user