mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-10-01 03:15:44 -04:00
37 lines
758 B
Python
Executable File
37 lines
758 B
Python
Executable File
# 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() |