수색…


소개

이 프로젝트에서는 SHA1 암호화 해시 함수로 작업하는 방법을 볼 수 있습니다. 예를 들어 문자열에서 해시를 얻는 방법과 SHA1 해시를 해킹하는 방법이 있습니다. 자식 허브에 소스 : https://github.com/mahdiabasi/SHA1Tool

# 파일 함수의 SHA1 체크섬 생성

먼저 System.Security.Cryptography와 System.IO를 프로젝트에 추가합니다.

 public string GetSha1Hash(string filePath)
    {
        using (FileStream fs = File.OpenRead(filePath))
        {
            SHA1 sha = new SHA1Managed();
            return BitConverter.ToString(sha.ComputeHash(fs));
        }
    }


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow