15 lines
354 B
C#
15 lines
354 B
C#
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace CommonHelpers
|
|
{
|
|
public static class HashHelper
|
|
{
|
|
public static string Compute(string value)
|
|
{
|
|
using var sha = SHA256.Create();
|
|
return Convert.ToHexString(sha.ComputeHash(Encoding.UTF8.GetBytes(value ?? string.Empty)));
|
|
}
|
|
}
|
|
}
|