Skip to content
Snippets Groups Projects
Commit 5948f143 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

fixed the killer bug with onion proxies

svn:r95
parent 4eb0158f
Branches
Tags
No related merge requests found
......@@ -80,8 +80,8 @@ int op_handshake_process_keys(connection_t *conn) {
#endif
memset(iv, 0, 16);
crypto_cipher_set_key(conn->b_crypto, iv);
crypto_cipher_set_key(conn->f_crypto, iv);
crypto_cipher_set_iv(conn->b_crypto, iv);
crypto_cipher_set_iv(conn->f_crypto, iv);
crypto_cipher_encrypt_init_cipher(conn->b_crypto);
crypto_cipher_decrypt_init_cipher(conn->f_crypto);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment