Reticulum/RNS/Interfaces/Interface.py

14 lines
236 B
Python
Raw Normal View History

import RNS
2016-06-03 17:02:02 +00:00
class Interface:
IN = False
OUT = False
FWD = False
RPT = False
name = None
def __init__(self):
pass
def get_hash(self):
2021-05-16 14:15:57 +00:00
return RNS.Identity.full_hash(str(self).encode("utf-8"))