networkwrapper skeleton done
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2021-04-19 18:50:22 +02:00
parent dd2f24f112
commit a2e09b3656
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 19 additions and 0 deletions

View File

@ -1 +1,20 @@
#!/usr/bin/env python3
class NetWrapper:
def __init__(self, publicKey: str, privateKey: str, cipherKey: str = ""):
self.publicKey = publicKey
self.privateKey = privateKey
self.cipherKey = cipherKey
def identifyServer(self):
pass
def identifyCleint(self):
pass
def sendMessage(self):
pass
def recieveMessage(self):
pass