-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hash.cs
49 lines (43 loc) · 1.29 KB
/
Hash.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.IO;
using System.Net;
using System.Security.Cryptography;
namespace UpdateManager
{
internal class Hash
{
internal static bool CheckHash(string UrlSHA256, string path, bool Is64BitProcess)
{
string hash2;
if (!Is64BitProcess)
{
UrlSHA256 += "";
}
else
{
UrlSHA256 += "_x64";
}
try
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
WebClient webclient = new WebClient();
WebRequest.DefaultWebProxy = null;
webclient.Proxy = null;
var hash1 = webclient.DownloadString(UrlSHA256);
using (var sha256 = SHA256.Create())
{
using (var stream = File.OpenRead(path))
{
byte[] hash = sha256.ComputeHash(stream);
hash2 = BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant();
}
}
return hash1.Equals(hash2, StringComparison.OrdinalIgnoreCase);
}
catch (Exception)
{
throw;
}
}
}
}