Mercurial > ec-dotfiles
view bin/ed2k.py @ 641:84a1e86d1afc
[vimrc] Prevent pointer to stick at the bottom of screen
author | nanaya <me@nanaya.pro> |
---|---|
date | Mon, 08 Jun 2020 15:06:56 +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)