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