mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Future-proof "id" lines against proposal 220.
This commit is contained in:
parent
f077bb55ab
commit
2fa601c797
@ -3591,7 +3591,7 @@ dirvote_create_microdescriptor(const routerinfo_t *ri, int consensus_method)
|
|||||||
if (consensus_method >= MIN_METHOD_FOR_ID_HASH_IN_MD) {
|
if (consensus_method >= MIN_METHOD_FOR_ID_HASH_IN_MD) {
|
||||||
char idbuf[BASE64_DIGEST_LEN+1];
|
char idbuf[BASE64_DIGEST_LEN+1];
|
||||||
digest_to_base64(idbuf, ri->cache_info.identity_digest);
|
digest_to_base64(idbuf, ri->cache_info.identity_digest);
|
||||||
smartlist_add_asprintf(chunks, "id %s\n", idbuf);
|
smartlist_add_asprintf(chunks, "id rsa1024 %s\n", idbuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
output = smartlist_join_strings(chunks, "", 0, NULL);
|
output = smartlist_join_strings(chunks, "", 0, NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user