[tor-commits] [tor/master] hs: Fix digest256 to base64 issue in a log statement

nickm at torproject.org nickm at torproject.org
Tue Sep 12 15:20:33 UTC 2017


commit 184bd2258673f9e33e43cfc1264da78f74ad78a4
Author: David Goulet <dgoulet at torproject.org>
Date:   Tue Sep 12 09:43:34 2017 -0400

    hs: Fix digest256 to base64 issue in a log statement
    
    Part of #23480.
    
    Signed-off-by: David Goulet <dgoulet at torproject.org>
---
 src/or/hs_cache.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/or/hs_cache.c b/src/or/hs_cache.c
index 78e2adacf..7f2a9cbbb 100644
--- a/src/or/hs_cache.c
+++ b/src/or/hs_cache.c
@@ -234,8 +234,7 @@ cache_clean_v3_as_dir(time_t now, time_t global_cutoff)
     /* Logging. */
     {
       char key_b64[BASE64_DIGEST256_LEN + 1];
-      base64_encode(key_b64, sizeof(key_b64), (const char *) key,
-                    DIGEST256_LEN, 0);
+      digest256_to_base64(key_b64, (const char *) key);
       log_info(LD_REND, "Removing v3 descriptor '%s' from HSDir cache",
                safe_str_client(key_b64));
     }
@@ -655,8 +654,7 @@ cache_clean_v3_as_client(time_t now)
     /* Logging. */
     {
       char key_b64[BASE64_DIGEST256_LEN + 1];
-      base64_encode(key_b64, sizeof(key_b64), (const char *) key,
-                    DIGEST256_LEN, 0);
+      digest256_to_base64(key_b64, (const char *) key);
       log_info(LD_REND, "Removing hidden service v3 descriptor '%s' "
                         "from client cache",
                safe_str_client(key_b64));





More information about the tor-commits mailing list