수색…


소개

이 프로젝트에서는 SHA1 암호화 해시 함수로 작업하는 방법을 볼 수 있습니다. 예를 들어 문자열에서 해시를 얻는 방법과 SHA1 해시를 해킹하는 방법이 있습니다.

github에서 소스 compelete : https://github.com/mahdiabasi/SHA1Tool

# 파일의 SHA1 체크섬 생성

먼저 System.Security.Cryptography 네임 스페이스를 프로젝트에 추가합니다.

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

# 텍스트 해시 생성

  public static string TextToHash(string text)
    {
        var sh = SHA1.Create();
        var hash = new StringBuilder();
        byte[] bytes = Encoding.UTF8.GetBytes(text);
        byte[] b = sh.ComputeHash(bytes);
        foreach (byte a in b)
        {
            var h = a.ToString("x2");
            hash.Append(h);
        }
        return hash.ToString();
    }


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