diff options
author | George Kadianakis <desnacked@riseup.net> | 2017-05-02 16:19:12 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-07 11:12:26 -0400 |
commit | 83249015c2741be55cf3d084660e6209323b5a1a (patch) | |
tree | 8383e455956f8ed8f202db1ee24bc440e020e847 /src/or/circuitbuild.h | |
parent | ba928e1ac8f13714aa6b619dd6f12ae89240d6ff (diff) | |
download | tor-83249015c2741be55cf3d084660e6209323b5a1a.tar.gz tor-83249015c2741be55cf3d084660e6209323b5a1a.zip |
Refactor circuit_init_cpath_crypto() to do prop224 rend circuits.
circuit_init_cpath_crypto() is responsible for creating the cpath of legacy
SHA1/AES128 circuits currently. We want to use it for prop224 circuits, so we
refactor it to create circuits with SHA3-256 and AES256 as well.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/circuitbuild.h')
-rw-r--r-- | src/or/circuitbuild.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.h b/src/or/circuitbuild.h index 45d9b2fb75..ae6864ea57 100644 --- a/src/or/circuitbuild.h +++ b/src/or/circuitbuild.h @@ -32,7 +32,7 @@ int circuit_send_next_onion_skin(origin_circuit_t *circ); void circuit_note_clock_jumped(int seconds_elapsed); int circuit_extend(cell_t *cell, circuit_t *circ); int circuit_init_cpath_crypto(crypt_path_t *cpath, const char *key_data, - int reverse); + int reverse, int is_hs_v3); struct created_cell_t; int circuit_finish_handshake(origin_circuit_t *circ, const struct created_cell_t *created_cell); |