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