pull/4/head
Mark Qvist 2018-04-08 13:41:03 +02:00
rodzic 07814919f2
commit 5f7694afdd
3 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -15,11 +15,11 @@ from cryptography.hazmat.primitives.asymmetric import padding
class Identity:
# Configure key size
KEYSIZE = 1536;
DERKEYSIZE = 1808;
KEYSIZE = 1536
DERKEYSIZE = 1808
# Padding size, not configurable
PADDINGSIZE= 336;
PADDINGSIZE= 336
# Storage
known_destinations = {}

Wyświetl plik

@ -94,7 +94,7 @@ class Packet:
def send(self):
if not self.sent:
self.pack()
RNS.log("Size: "+str(len(self.raw))+" header is "+str(len(self.header))+" payload is "+str(len(self.ciphertext)), RNS.LOG_DEBUG)
#RNS.log("Size: "+str(len(self.raw))+" header is "+str(len(self.header))+" payload is "+str(len(self.ciphertext)), RNS.LOG_DEBUG)
RNS.Transport.outbound(self.raw)
self.packet_hash = RNS.Identity.fullHash(self.raw)
self.sent_at = time.time()

Wyświetl plik

@ -17,7 +17,7 @@ class Transport:
Transport.cacheRaw(raw)
for interface in Transport.interfaces:
if interface.OUT:
RNS.log("Transmitting via: "+str(interface), RNS.LOG_DEBUG)
RNS.log("Transmitting "+str(len(raw))+" bytes via: "+str(interface), RNS.LOG_DEBUG)
interface.processOutgoing(raw)
@staticmethod