Beispiel #1
0
 def receive_message(self, ciphertext):
     return AESEncrypt.decrypt(ciphertext)
Beispiel #2
0
 def __init__(self):
     AESEncrypt.__init__(self)
Beispiel #3
0
 def send_message(self, message):
     self.SERVER.sendall(AESEncrypt.encrypt(message))