Reputation: 1813
I'm trying to convert an MD5 hashed value into a a bit integer in python. Does anyone have any idea how I would go about doing this?
I currently go through several ngrams applying a hash to each ngram:
for sentence in range(0,len(doc)):
for i in range(len(doc[sentence]) - 4 + 1):
ngram = doc[sentence][i:i + 4]
hashWord = hashlib.md5()
hashWord.update(ngram)
Thanks for any help.
Upvotes: 13
Views: 22205
Reputation: 142106
If by "into bits", you mean a bit string for instance, then something like:
import hashlib
a = hashlib.md5('alsdkfjasldfjkasdlf')
b = a.hexdigest()
as_int = int(b, 16)
print bin(as_int)[2:]
# 11110000110010001100111010111001011010101011110001010000011010010010100111100
Upvotes: 39