300x250
파이썬 파일 hash 찾기 (MD5, SHA1, SHA256)
hashlib를 이용하여 파일 hash 찾기
def file_hash(file_path):
hashData = []
try:
f = open(file_path, 'rb')
data = f.read()
finally:
f.close()
hashData.insert(0, hashlib.md5(data).hexdigest())
hashData.insert(1, hashlib.sha1(data).hexdigest())
hashData.insert(2, hashlib.sha256(data).hexdigest())
return hashData
반응형
'Python' 카테고리의 다른 글
Python) QEditText 사용 시 복사&붙여넣기 폰트 변경 (0) | 2022.05.11 |
---|---|
Python) Base64 Decoding 에러 처리 - Non-base64 digit found (0) | 2022.05.09 |
Python) Pycharm에서 Qt5 Designer 실행하기 (0) | 2022.02.05 |
Python) 파이썬 URL, Base64 인코딩, 디코딩 GUI 구현 (0) | 2022.02.03 |
Python) 파이썬 tabWidget (탭위젯) (0) | 2022.02.01 |