diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-07-05 12:14:04 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-07-05 12:14:04 -0400 |
commit | 87758dbebc7ab624ba7b8802478ae2dc980d90c0 (patch) | |
tree | f4e13772fa5c5ece2056827451d2a9d775acdc56 /src/or/shared_random.h | |
parent | e889da1d7f34632dce24ab590b1df99d11b5c91c (diff) | |
parent | cc34929abc3a5423372d1e12d47710ed366d43b4 (diff) | |
download | tor-87758dbebc7ab624ba7b8802478ae2dc980d90c0.tar.gz tor-87758dbebc7ab624ba7b8802478ae2dc980d90c0.zip |
Merge remote-tracking branch 'dgoulet/bug19567_029_01'
Diffstat (limited to 'src/or/shared_random.h')
-rw-r--r-- | src/or/shared_random.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/shared_random.h b/src/or/shared_random.h index d1ba99d1fe..9885934cc7 100644 --- a/src/or/shared_random.h +++ b/src/or/shared_random.h @@ -34,11 +34,11 @@ #define SR_SRV_MSG_LEN \ (SR_SRV_TOKEN_LEN + sizeof(uint64_t) + sizeof(uint32_t) + DIGEST256_LEN) -/* Length of base64 encoded commit NOT including the NULL terminated byte. - * Formula is taken from base64_encode_size. */ +/* Length of base64 encoded commit NOT including the NUL terminated byte. + * Formula is taken from base64_encode_size. This adds up to 56 bytes. */ #define SR_COMMIT_BASE64_LEN \ (((SR_COMMIT_LEN - 1) / 3) * 4 + 4) -/* Length of base64 encoded reveal NOT including the NULL terminated byte. +/* Length of base64 encoded reveal NOT including the NUL terminated byte. * Formula is taken from base64_encode_size. This adds up to 56 bytes. */ #define SR_REVEAL_BASE64_LEN \ (((SR_REVEAL_LEN - 1) / 3) * 4 + 4) |