This commit is contained in:
Mark Qvist 2018-04-04 15:29:48 +02:00
parent 217ab1c2eb
commit d743f72eb0
1 changed files with 0 additions and 37 deletions

37
t.py
View File

@ -1,37 +0,0 @@
# from RNS.Destination import *
# from RNS.Packet import *
# from RNS import Reticulum
from RNS import *
# from RNS import Destination
import os
import time
def testCallback(message, receiver):
print("Got message from "+str(receiver)+": ")
print(message)
print("----------")
#RNS = Reticulum(configdir=os.path.expanduser("~")+"/.Reticulum2")
RNS = Reticulum()
identity = Identity()
d1=Destination(identity, Destination.IN, Destination.SINGLE, "messenger", "user")
#d1.setProofStrategy(Destination.PROVE_ALL)
d1.setCallback(testCallback)
msg=""
for x in range(300):
msg += "a"
signed = d1.sign(msg)
sl = len(signed)
pl = len(d1.identity.pub_bytes)
d1.announce()
p1=Packet(d1, msg)
p1.send()
# p2=Packet(d2,"Test af msg")
# p2.send()
raw_input()