Python에서 파일 해싱 저는 파이썬이 EOF에 읽기를 원하므로 sha1이든 md5든 적절한 해시를 얻을 수 있습니다.제발 도와주세요.지금까지 제가 가진 것은 다음과 같습니다. import hashlib inputFile = raw_input("Enter the name of the file:") openedFile = open(inputFile) readFile = openedFile.read() md5Hash = hashlib.md5(readFile) md5Hashed = md5Hash.hexdigest() sha1Hash = hashlib.sha1(readFile) sha1Hashed = sha1Hash.hexdigest() print "File Name: %s" % inputFile print ..