Guest User

Untitled

a guest
Jan 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. print ('-- '+hashesFile[h])
  2. print ('-> ' +hashlib.md5(wordsFile[j]).hexdigest())
  3.  
  4. -- 5d21e42d34fc1563bb2c73b3e1811357
  5. -> 5d21e42d34fc1563bb2c73b3e1811357
  6.  
  7. if (hashesFile[h] == hashlib.md5(wordsFile[j]).hexdigest()):
  8. print ('ok')
  9.  
  10. print '-- %r' % hashesFile[h]
  11. print '-> %r' % hashlib.md5(wordsFile[j]).hexdigest())
  12.  
  13. if (hashesFile[h].strip() == hashlib.md5(wordsFile[j]).hexdigest()):
  14. print ('ok')
Add Comment
Please, Sign In to add comment