Reticulum/RNS/Interfaces/Interface.py
2021-09-03 10:13:48 +02:00

14 lines
236 B
Python
Executable File

import RNS
class Interface:
IN = False
OUT = False
FWD = False
RPT = False
name = None
def __init__(self):
pass
def get_hash(self):
return RNS.Identity.full_hash(str(self).encode("utf-8"))