def __init__(self):
		# make a first request just to set the current IV. We can predict subsequent ones.
		self.ciphertext('a')
		ChosenPlaintext.__init__(self, use_predicted_iv=True)
		return
예제 #2
0
 def __init__(self):
     self.iv = s.recv(16)
     ChosenPlaintext.__init__(self, use_predicted_iv=True)
     return
 def __init__(self):
     ChosenPlaintext.__init__(self)
     return
	def __init__(self):
		ChosenPlaintext.__init__(self)
		return