14 lines
316 B
C#
14 lines
316 B
C#
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace Api.Services;
|
|
|
|
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)));
|
|
}
|
|
}
|