diff options
author | George Kadianakis <desnacked@riseup.net> | 2017-07-06 16:23:30 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-07 11:12:27 -0400 |
commit | 70d08f764d9912e66a2c6c0f3e4241f563d53ebd (patch) | |
tree | a7cf6f22fcf2912c26d6b6bde85babc2cee2c9cd /src/or/hs_circuit.h | |
parent | c4d17faf81d8cfe4cf943ba11be03413c58f4d44 (diff) | |
download | tor-70d08f764d9912e66a2c6c0f3e4241f563d53ebd.tar.gz tor-70d08f764d9912e66a2c6c0f3e4241f563d53ebd.zip |
Explicit length checks in create_rend_cpath().
Had to also edit hs_ntor_circuit_key_expansion() to make it happen.
Diffstat (limited to 'src/or/hs_circuit.h')
-rw-r--r-- | src/or/hs_circuit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/hs_circuit.h b/src/or/hs_circuit.h index 1c2924ccad..71ce5c3331 100644 --- a/src/or/hs_circuit.h +++ b/src/or/hs_circuit.h @@ -15,6 +15,7 @@ int hs_circuit_setup_e2e_rend_circ(origin_circuit_t *circ, const uint8_t *ntor_key_seed, + size_t seed_len, int is_service_side); int hs_circuit_setup_e2e_rend_circ_legacy_client(origin_circuit_t *circ, const uint8_t *rend_cell_body); |