Tagged Questions

1
vote
6answers
327 views

the fastest way to create checksum for large files in python

hi, i need to transfer large files across network and need to create checksum for them on hourly basis. so the speed for generating checksum is critical for me. somehow i can't make zlib.crc32 and …
3
votes
2answers
207 views

hashlib / md5. Compatibility with python 2.4

Hi all. python 2.6 reports that the md5 module is obsolete and hashlib should be used. If I change import md5 to import hashlib I will solve for python 2.5 and python 2.6, but not for python 2.4, …
1
vote
3answers
182 views

Difference in SHA512 between python hashlib and sha512sum tool

I am getting different message digests from the linux 'sha512sum' tool and the python hashlib library. Here is what I get on my Ubuntu 8.10: $ echo test | sha512sum …
1
vote
3answers
824 views

Get MD5 hash of a files without open it in Python

I have used hashlib (which replaces md5 in Python 2.6/3.0) and it worked fine if I opened a file and put its content in hashlib.md5 function. The problem is with very big files that their sizes could …
0
votes
2answers
265 views

Python data/file Crc

I am wanting to generate and store a CRC (or similar) value for a given list of files which can be used as a comparison at a later point. Writing a function to do this is simple enough, but is there a …