Mercurial > ec-dotfiles
view bin/ed2k.py @ 495:fea77cdcdb09
Size-customizable pwgen.
author | edogawaconan <me@myconan.net> |
---|---|
date | Fri, 20 Dec 2013 20:17:00 +0900 |
parents | 5bafb912837e |
children |
line wrap: on
line source
#!/usr/bin/env python import os, sys from Crypto.Hash import MD4 def ed2k(filename): block = 9500*1024 hash = "" file = open(filename, "rb") fileblock = file.read(block) while fileblock: hash += MD4.new(fileblock).digest() fileblock = file.read(block) file.close() return MD4.new(hash).hexdigest() if __name__ == "__main__": for file in sys.argv[1:]: print "%s %s" %(ed2k(file), file)