3
我想在python中實現sha-3。下面給出的代碼是我如何實現它。但我一次又一次地得到下面的錯誤。在python執行Sha-3
import sys
import hashlib
arg1 = sys.argv[1]
with open(arg1, 'r') as myfile:
data=myfile.read().replace('\n', '')
import sha3
s=hashlib.sha3_228(data.encode('utf-8')).hexdigest()
print(s)
以下錯誤是當我執行它時得到的。
Traceback (most recent call last):
File "sha3.py", line 6, in <module>
import sha3
File "/home/hello/Documents/SHA-3/sha3.py", line 7, in <module>
s=hashlib.sha3_228(data.encode('utf-8')).hexdigest()
AttributeError: 'module' object has no attribute 'sha3_228'
以下鏈接可供參考。 https://pypi.python.org/pypi/pysha3
沒有ü嘗試這個怎麼我再次 – saki
對不起@saki得到了同樣的錯誤,我的回答是一半的權利,我已經修好了。 –
謝謝你現在可以正常工作 – saki