15 lines
355 B
C#
15 lines
355 B
C#
using System;
|
|
using System.IO;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace Server.Algorithm;
|
|
|
|
public static class GetHash
|
|
{
|
|
public static string GetChecksum(string file)
|
|
{
|
|
using FileStream inputStream = File.OpenRead(file);
|
|
return BitConverter.ToString(new SHA256Managed().ComputeHash(inputStream)).Replace("-", string.Empty);
|
|
}
|
|
}
|