Delete bob.py
This commit is contained in:
parent
d7cc314ffe
commit
3d8db78895
|
@ -1,31 +0,0 @@
|
|||
"""
|
||||
!/usr/bin/env python
|
||||
|
||||
https://pypi.org/project/websockets/
|
||||
|
||||
@author Lachezar Todorov
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
import encrypt_decrypt
|
||||
from websockets import serve
|
||||
|
||||
class Bob():
|
||||
def __init__(self,privateKey):
|
||||
self.pk = privateKey
|
||||
|
||||
async def decrypt(websocket, path):
|
||||
privateKey = "" #dummy variable to make code work, please change!
|
||||
async for message in websocket:
|
||||
message = await websocket.recv()
|
||||
decryptedMessage = encrypt_decrypt.encrypt_decrypt.decryption(message, privateKey)
|
||||
#await websocket.send(decryptedMessage)
|
||||
print(decryptedMessage)
|
||||
|
||||
async def messageDecrypt(privateKey):
|
||||
#do something with privateKey to send it to decrypt
|
||||
|
||||
async with serve(Bob.decrypt, "localhost", 8765):
|
||||
await asyncio.Future() # run forever
|
||||
|
||||
#asyncio.run(main())
|
Loading…
Reference in New Issue
Block a user