mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
remove obsolete code
svn:r3809
This commit is contained in:
parent
c4470cbedf
commit
e07e0a4732
@ -107,18 +107,13 @@ static int relay_digest_matches(crypto_digest_env_t *digest, cell_t *cell) {
|
|||||||
static int relay_crypt_one_payload(crypto_cipher_env_t *cipher, char *in,
|
static int relay_crypt_one_payload(crypto_cipher_env_t *cipher, char *in,
|
||||||
int encrypt_mode) {
|
int encrypt_mode) {
|
||||||
char out[CELL_PAYLOAD_SIZE]; /* 'in' must be this size too */
|
char out[CELL_PAYLOAD_SIZE]; /* 'in' must be this size too */
|
||||||
// relay_header_t rh;
|
|
||||||
|
|
||||||
// relay_header_unpack(&rh, in);
|
|
||||||
// log_fn(LOG_DEBUG,"before crypt: %d",rh.recognized);
|
|
||||||
if (( encrypt_mode && crypto_cipher_encrypt(cipher, out, in, CELL_PAYLOAD_SIZE)) ||
|
if (( encrypt_mode && crypto_cipher_encrypt(cipher, out, in, CELL_PAYLOAD_SIZE)) ||
|
||||||
(!encrypt_mode && crypto_cipher_decrypt(cipher, out, in, CELL_PAYLOAD_SIZE))) {
|
(!encrypt_mode && crypto_cipher_decrypt(cipher, out, in, CELL_PAYLOAD_SIZE))) {
|
||||||
log_fn(LOG_WARN,"Error during relay encryption");
|
log_fn(LOG_WARN,"Error during relay encryption");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
memcpy(in,out,CELL_PAYLOAD_SIZE);
|
memcpy(in,out,CELL_PAYLOAD_SIZE);
|
||||||
// relay_header_unpack(&rh, in);
|
|
||||||
// log_fn(LOG_DEBUG,"after crypt: %d",rh.recognized);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user