Ejemplo n.º 1
0
	def hexdigest(self):
		return md4_new(self.h).hexdigest()
Ejemplo n.º 2
0
	def update(self,c):
		if self.l<=self.m:
			self.h=c
		else:
			self.h+=md4_new(c).digest()