Files
myAi/common-helpers/HashHelpers.cs
T
claude bc85a450e5
Build and Push Docker Images / build (push) Failing after 1s
Changes
2026-05-06 19:58:29 +03:00

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)));
}
}
}