]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove node_get_rsa_onion_key
authorNick Mathewson <nickm@torproject.org>
Mon, 24 Jun 2024 18:16:11 +0000 (14:16 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 26 Jun 2024 15:42:36 +0000 (11:42 -0400)
src/feature/nodelist/nodelist.c
src/feature/nodelist/nodelist.h

index 09b10f10f6251663bcf3f2de6129baca5a74147b..735361d4177769dc9a38cde1da3b7f16de05941f 100644 (file)
@@ -2034,34 +2034,6 @@ node_get_curve25519_onion_key(const node_t *node)
     return NULL;
 }
 
-/* Return a newly allocacted RSA onion public key taken from the given node.
- *
- * Return NULL if node is NULL or no RSA onion public key can be found. It is
- * the caller responsibility to free the returned object. */
-crypto_pk_t *
-node_get_rsa_onion_key(const node_t *node)
-{
-  crypto_pk_t *pk = NULL;
-  const char *onion_pkey;
-  size_t onion_pkey_len;
-
-  if (!node) {
-    goto end;
-  }
-
-  if (node->ri) {
-    onion_pkey = node->ri->onion_pkey;
-    onion_pkey_len = node->ri->onion_pkey_len;
-  } else {
-    /* No descriptor; we don't take onion keys from microdescs. */
-    goto end;
-  }
-  pk = router_get_rsa_onion_pkey(onion_pkey, onion_pkey_len);
-
- end:
-  return pk;
-}
-
 /** Refresh the country code of <b>ri</b>.  This function MUST be called on
  * each router when the GeoIP database is reloaded, and on all new routers. */
 void
index 3d5ad9c0ea6e0ee4cbcc30e735c445b5ccfaa469..948a293f0ca194e95f4fc8e4fb4878a0bee8bca8 100644 (file)
@@ -109,7 +109,6 @@ void node_get_pref_ipv6_dirport(const node_t *node, tor_addr_port_t *ap_out);
 int node_has_curve25519_onion_key(const node_t *node);
 const struct curve25519_public_key_t *node_get_curve25519_onion_key(
                                   const node_t *node);
-crypto_pk_t *node_get_rsa_onion_key(const node_t *node);
 
 MOCK_DECL(const smartlist_t *, nodelist_get_list, (void));