Displaying 3 results from an estimated 3 matches for "inciph".
Did you mean:
insiph
2011 Aug 07
1
"Cipher = none" doesn't seem to be working properly
...PU time spent in libcrypto. I narrowed it down to this line
in net_setup.c:
myself->connection->outcipher = EVP_bf_ofb();
It looks as though all outgoing data is encrypted with blowfish,
regardless of the Cipher setting. I pulled that assignment of
outcipher up to match what happens with incipher, and then my bridge
throughput doubled and tincd is no longer spending all that time in
libcrypto. I didn't have a chance to test other Cipher settings, so
what I did may completely break encryption. How should outcipher be
set?
-Brian
2013 Nov 07
2
Segfaults on connection loss
...status
= {pinged = 0, active = 0, connecting = 0, unused_termreq = 0, remove =
1, timeout = 0, encryptout = 0, decryptin = 0, mst = 0, unused = 0},
estimated_weight = 1011, start = {tv_sec = 1383624081, tv_usec =
156843}, outgoing = 0x1abc4c0, node = 0x1ad8ef0, edge = 0x1b71ba0,
rsa_key = 0x0, incipher = 0x7ff0d99eea20, outcipher = 0x7ff0d99eea20,
inctx = 0x0, outctx = 0x0, inkey = 0x0, outkey = 0x0, inkeylength = 0,
outkeylength = 0, indigest = 0x7ff0d99ef8c0, outdigest = 0x7ff0d99ef8c0,
inmaclength = 0, outmaclength = 0, incompression = 0, outcompression =
0, mychallenge = 0x0, hischallen...
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
....c Thu Sep 25 11:19:53 2008
@@ -196,7 +196,7 @@
return false;
}
- c->status.encryptout = true;
+ c->status.st.encryptout = true;
}
return x;
@@ -272,7 +272,7 @@
return false;
}
- c->status.decryptin = true;
+ c->status.st.decryptin = true;
} else {
c->incipher = NULL;
}
@@ -572,7 +572,7 @@
/* Activate this connection */
c->allow_request = ALL;
- c->status.active = true;
+ c->status.st.active = true;
ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection with %s (%s) activated"), c->name,
c->hostname);
diff -ub...