mirror of https://github.com/Sonarr/Sonarr
39 lines
935 B
C#
39 lines
935 B
C#
using System.IO;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core
|
|
{
|
|
public static class Security
|
|
{
|
|
public static string SHA256Hash(this string input)
|
|
{
|
|
using (var hash = SHA256Managed.Create())
|
|
{
|
|
var enc = Encoding.UTF8;
|
|
return GetHash(hash.ComputeHash(enc.GetBytes(input)));
|
|
}
|
|
}
|
|
|
|
public static string SHA256Hash(this Stream input)
|
|
{
|
|
using (var hash = SHA256Managed.Create())
|
|
{
|
|
return GetHash(hash.ComputeHash(input));
|
|
}
|
|
}
|
|
|
|
private static string GetHash(byte[] bytes)
|
|
{
|
|
var stringBuilder = new StringBuilder();
|
|
|
|
foreach (var b in bytes)
|
|
{
|
|
stringBuilder.Append(b.ToString("x2"));
|
|
}
|
|
|
|
return stringBuilder.ToString();
|
|
}
|
|
}
|
|
}
|