def receive_message(self, ciphertext): return AESEncrypt.decrypt(ciphertext)
def __init__(self): AESEncrypt.__init__(self)
def send_message(self, message): self.SERVER.sendall(AESEncrypt.encrypt(message))