示例#1
0
 def test_digest(self):
     dig = pymd5.md5(b"Hello World").digest()
示例#2
0
 def test_hexdigest(self):
     hash = pymd5.md5(b"Hello World").hexdigest()
     self.assertEquals(hash, 'b10a8db164e0754105b7a99be72e3fe5')
示例#3
0
 def test_md5(self):
     md5 = pymd5.md5()