aboutsummaryrefslogtreecommitdiff
path: root/src/or/onion.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-04 16:09:52 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-02 14:11:14 -0500
commitf7e590df05b1b3568a68ee3eae3965cb58e13de7 (patch)
treec808c0da48de96067ae20fb07aae9c1db451b891 /src/or/onion.h
parent5b3dd1610cf2147509167332bf298fc821e6a102 (diff)
downloadtor-f7e590df05b1b3568a68ee3eae3965cb58e13de7.tar.gz
tor-f7e590df05b1b3568a68ee3eae3965cb58e13de7.zip
Split onion.[ch] into onion{,_fast,_tap}.[ch]
I'm going to want a generic "onionskin" type and set of wrappers, and for that, it will be helpful to isolate the different circuit creation handshakes. Now the original handshake is in onion_tap.[ch], the CREATE_FAST handshake is in onion_fast.[ch], and onion.[ch] now handles the onion queue. This commit does nothing but move code and adjust header files.
Diffstat (limited to 'src/or/onion.h')
-rw-r--r--src/or/onion.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/or/onion.h b/src/or/onion.h
index e7626f9709..55ea3f9306 100644
--- a/src/or/onion.h
+++ b/src/or/onion.h
@@ -15,33 +15,6 @@
int onion_pending_add(or_circuit_t *circ, char *onionskin);
or_circuit_t *onion_next_task(char **onionskin_out);
void onion_pending_remove(or_circuit_t *circ);
-
-int onion_skin_create(crypto_pk_t *router_key,
- crypto_dh_t **handshake_state_out,
- char *onion_skin_out);
-
-int onion_skin_server_handshake(const char *onion_skin,
- crypto_pk_t *private_key,
- crypto_pk_t *prev_private_key,
- char *handshake_reply_out,
- char *key_out,
- size_t key_out_len);
-
-int onion_skin_client_handshake(crypto_dh_t *handshake_state,
- const char *handshake_reply,
- char *key_out,
- size_t key_out_len);
-
-int fast_server_handshake(const uint8_t *key_in,
- uint8_t *handshake_reply_out,
- uint8_t *key_out,
- size_t key_out_len);
-
-int fast_client_handshake(const uint8_t *handshake_state,
- const uint8_t *handshake_reply_out,
- uint8_t *key_out,
- size_t key_out_len);
-
void clear_pending_onions(void);
#endif