aboutsummaryrefslogtreecommitdiff
path: root/src/feature/relay
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-04-05 15:02:43 +1000
committerteor <teor@torproject.org>2019-04-05 15:17:19 +1000
commit7d513a5d5541d17c4e9622a9af76303042fd380b (patch)
treec3aaf4b1bc230da587c1b23bb025b56fc3e78ad9 /src/feature/relay
parentabaed046a6f0f6f6fea5eaf3631b10a514e962e9 (diff)
downloadtor-7d513a5d5541d17c4e9622a9af76303042fd380b.tar.gz
tor-7d513a5d5541d17c4e9622a9af76303042fd380b.zip
crypto_format: Remove the return values from digest256_to_base64()
... and ed25519_public_to_base64(). Also remove all checks for the return values, which were redundant anyway, because the functions never failed. Part of 29960.
Diffstat (limited to 'src/feature/relay')
-rw-r--r--src/feature/relay/router.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/feature/relay/router.c b/src/feature/relay/router.c
index e5cf72ad18..837465cfe9 100644
--- a/src/feature/relay/router.c
+++ b/src/feature/relay/router.c
@@ -2728,11 +2728,8 @@ router_dump_router_to_string(routerinfo_t *router,
log_err(LD_BUG,"Couldn't base64-encode signing key certificate!");
goto err;
}
- if (ed25519_public_to_base64(ed_fp_base64,
- &router->cache_info.signing_key_cert->signing_key)<0) {
- log_err(LD_BUG,"Couldn't base64-encode identity key\n");
- goto err;
- }
+ ed25519_public_to_base64(ed_fp_base64,
+ &router->cache_info.signing_key_cert->signing_key);
tor_asprintf(&ed_cert_line, "identity-ed25519\n"
"-----BEGIN ED25519 CERT-----\n"
"%s"