D:\download>certutil -hashfile python-3.10.11-amd64.exe SHA1의 python-3.10.11-amd64.exe 해시: bd8b24ec02138327f70f6a3179f6991cfc007a6f CertUtil: -hashfile 명령이 성공적으로 완료되었습니다. D:\download> Windows 내 명령어인 certutil.exe 의 결과값 중에서 해시값을 이용할 일이 있어서 python 코드를 작성해 보았다. import os import sys import subprocess filepath = 'python-3.10.11-amd64.exe' cmd = 'certutil.exe -hashfile ' command = cmd + filepath result..