mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
+ is not how we say concatenate
This commit is contained in:
parent
e6150c7fc0
commit
1987157d0c
1 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ rend_compute_v2_desc_id(char *desc_id_out, const char *service_id,
|
|||
}
|
||||
/* Calculate current time-period. */
|
||||
time_period = get_time_period(now, 0, service_id_binary);
|
||||
/* Calculate secret-id-part = h(time-period + replica). */
|
||||
/* Calculate secret-id-part = h(time-period | replica). */
|
||||
get_secret_id_part_bytes(secret_id_part, time_period, descriptor_cookie,
|
||||
replica);
|
||||
/* Calculate descriptor ID. */
|
||||
|
@ -556,7 +556,7 @@ rend_encode_v2_descriptors(smartlist_t *descs_out,
|
|||
char desc_digest[DIGEST_LEN];
|
||||
rend_encoded_v2_service_descriptor_t *enc =
|
||||
tor_malloc_zero(sizeof(rend_encoded_v2_service_descriptor_t));
|
||||
/* Calculate secret-id-part = h(time-period + cookie + replica). */
|
||||
/* Calculate secret-id-part = h(time-period | cookie | replica). */
|
||||
get_secret_id_part_bytes(secret_id_part, time_period, descriptor_cookie,
|
||||
k);
|
||||
base32_encode(secret_id_part_base32, sizeof(secret_id_part_base32),
|
||||
|
|
Loading…
Add table
Reference in a new issue