文字列「text」を追加したいIDのリストがあります。('text'文字列が追加された後の)IDのいずれかが文字列'text_compare'と等しいかどうかを確認したいと思います。
奇妙なことに、ハッシュが行われる前の文字列は同じですが、ハッシュが行われた後は、ハッシュによって同じ結果が得られなかったようです。以下は私のコードです。Pythonコマンドラインでテストできます。
import hashlib
h = hashlib.sha512()
text = 'beruk makye'
text_compare = '3beruk makye'
text_compare_hash = h.update(text_compare)
text_compare_hash = h.hexdigest()
ids = [1,2,3]
texts = []
bool_text = []
bool_text_hash = []
for id in ids:
texts.append(str(id) + text)
for t in texts:
if t == text_compare:
bool_text.append(True)
else:
bool_text.append(False)
for t in texts:
h.update(t)
t_hash = str(h.hexdigest())
if t_hash == text_compare_hash:
bool_text_hash.append(True)
else:
bool_text_hash.append(False)
print ids
# [1, 2, 3]
print texts
# ['1beruk makye', '2beruk makye', '3beruk makye']
print bool_text
# [False, False, True]
print bool_text_hash
# [False, False, False]