Tagged Questions

46
votes
4answers
20k 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 ...
8
votes
4answers
140 views

Determine whether any files have been added, removed, or modified in a directory

I'm trying to write a Python script that will get the md5sum of all files in a directory (in Linux). Which I believe I have done in the code below. I want to be able to run this to make sure no ...
6
votes
2answers
3k views

Python: Generating a MD5 checksum of a file?

Is there any simple way of generating (and checking) MD5 checksums of a list of files in Python? (I have a small program I'm working on, and I'd like to confirm the checksums of the files).
6
votes
4answers
3k views

Hashing in SHA512 using a salt? - Python

I have been looking through ths hashlib documentation but haven't found anything talking about using salt when hashing data. Help would be great.
6
votes
2answers
2k views

hashlib / md5. Compatibility with python 2.4

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, which has no ...
5
votes
3answers
216 views

Using hashlib to compute md5 digest of a file in python3

With python 2.7 the following code computes the mD5 hexdigest of the content of a file. (EDIT: well, not really as answers have shown, I just thought so). import hashlib def md5sum(filename): f ...
4
votes
3answers
71 views

SHA1 hash differ between openssl and hashlib/pycrypto

Why does the hash from using openssl differ from the ones I get in python? $ echo "Lorem ipsum" | openssl dgst -sha1 -hex (stdin)= d0c05753484098c61e86f402a2875e68992b5ca3 $ python >>> from ...
4
votes
3answers
104 views

Hashlib problem

Heres my code: import hashlib real = hashlib.sha512("mom") status = True while status: inp = raw_input("What's the password?") converted = hashlib.sha512(inp) if converted == real: ...
3
votes
1answer
179 views

Why the hashlib and hmac are generating different hash values?

In Python 2.7, my = "my" key = "key" print(hashlib.sha256(my + key).hexdigest()) print(hmac.new(my, key, hashlib.sha256).hexdigest()) output, ...
3
votes
2answers
234 views

Why is Python's Hashlib not strongly typed?

Python is supposed to be strongly typed. For instance: 'abc'['1'] won't work, because you're expected to provide an integer there, not a string. An error wil be raised and you can go on and correct ...
3
votes
1answer
255 views

Operations on Python hashes

I've got a rather strange problem. For a Distributed Hash Table I need to be able to do some simple math operations on MD5 hashes. These include a sum (numeric sum represented by the hash) and a ...
2
votes
4answers
74 views

Combine (3) 32-char hex hashes into a single unique 32-char hash?

I have (3) md5sums that I need to combine into a single hash. The new hash should be 32-characters, but is case-sensitive and can be any letter or number. What's the best way to do this in Python?
2
votes
3answers
139 views

Max limit of bytes in method update of Hashlib Python module

I am trying to compute md5 hash of a file with the function hashlib.md5() from hashlib module. So that I writed this piece of code: Buffer = 128 f = open("c:\\file.tct", "rb") m = hashlib.md5() ...
2
votes
3answers
2k views

basics of python encryption w/ hashlib sha1

I'm struggling to fully understand how encryption works and is coded, particularly with python. I'm just trying to get the basics down and create code in the simplest form. I'm going to be passing a ...
2
votes
2answers
438 views

Is there a significant overhead by using different versions of sha hashing (hashlib module)

The hashlib Python module provides the following hash algorithms constructors: md5(), sha1(), sha224(), sha256(), sha384(), and sha512(). Assuming I don't want to use md5, is there a big difference ...
2
votes
3answers
269 views

Persisting hashlib state

I'd like to create a hashlib instance, update() it, then persist its state in some way. Later, I'd like to recreate the object using this state data, and continue to update() it. Finally, I'd like to ...
1
vote
1answer
48 views

Porting hashs from php's crypt() to python

I was wondering if there is a python cognate to PHP's crypt() function that performs in a similar way, generating a random salt and embedding it within the saved string. I have a table of hashed ...
1
vote
3answers
260 views

Python hashlib problem “TypeError: Unicode-objects must be encoded before hashing”

I have this error Traceback (most recent call last): File "python_md5_cracker.py", line 27, in <module> m.update(line) TypeError: Unicode-objects must be encoded before hashing when I try ...
1
vote
2answers
148 views

How do I find the MD5 hash of an ISO file using Python?

I am writing a simple tool that allows me to quickly check MD5 hash values of downloaded ISO files. Here is my algorithm: import sys import hashlib def main(): filename = sys.argv[1] # Takes the ...
1
vote
1answer
220 views

How to fix Unicode encode error using the hashlib module?

After multiple searches I have not been able to determine how to avoid an error stating: "Unicode-objects must be encoded before hashing" when using this code: pwdinput = input("Now enter a ...
1
vote
1answer
102 views

Expose _hashlib.pyd internals for EVP_MD_CTX?

Anyone know how to expose python 2.x _hashlib.pyd internals using ctypes? I especially need to extract the EVP_MD_CTX struct for serialization of python HASH objects.
1
vote
2answers
343 views

_sha import in python hashlib

Well, today I was checking the hashlib module in python, but then I found something that I still can't figure out. Inside this python module, there is an import that I can't follow. I goes like this: ...
1
vote
6answers
3k views

the fastest way to create checksum for large files in python

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 ...
1
vote
3answers
908 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
2answers
918 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 ...
0
votes
2answers
144 views

Unable to import “hashlib”

I'm trying to encrypt a string in sha1 and I get an error from the server: "No Module Named hashlib" By using the following code: import hashlib encrypted = hashlib.sha1(string) encrypted = ...
0
votes
1answer
273 views

Hashlib in Windows and Linux

Well, I'm doing a p2p application in python and I'm using the Hashlib module for identify the same files with different names in the network p2p. The thing is that tested the part that do the hash ...
0
votes
3answers
1k views

Python and hashlib module

I've just installed Python 2.6.6 from sources and what I get: >>> import hashlib Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
0
votes
1answer
235 views

How to reuse an instance of hashlib.md5

How do you flush (or reset) and reuse an instance of hashlib.md5 in python? If I am performing multiple hashing operations in a script, it seems inefficient to use a new instance of hashlib.md5 each ...
0
votes
2answers
946 views

Compare result from hexdigest() to a string

I've got a generated MD5-hash, which I would like to compare to another MD5-hash from a string. The statement below is false, even though they look the same when you print them and should be true. ...
0
votes
2answers
509 views

Issues with Python hashlib.sha256 (2.4.3)

So I have some code: signature = hmac.new( key=AWS_SECRET_ACCESS_KEY, msg=string_to_sign, digestmod=hashlib.sha256).digest() That runs perfectly on my own computer (has python 2.6.1). ...
0
votes
3answers
249 views

Is it an MD5 digest in this Python script?

I am trying to understand this simple hashlib code in Python that has been given to me the other day on Stackoverflow: import hashlib m = hashlib.md5() m.update("Nobody inspects") m.update(" the ...