Innovenergy_trunk/csharp/App/Backend/Utils/Crypto.cs

22 lines
638 B
C#
Raw Normal View History

using System.Security.Cryptography;
2023-02-24 11:58:47 +00:00
namespace Innovenergy.Backend.Utils;
2023-02-16 14:08:50 +00:00
public static class Crypto
{
2023-02-16 14:08:50 +00:00
public static String ComputeHash(Byte[] bytesToHash, Byte[] salt)
{
using var mySHA256 = SHA256.Create();
var hashValue = mySHA256.ComputeHash(bytesToHash);
// var hashValue = new Rfc2898DeriveBytes(hashValue, salt, 10000);
return Convert.ToBase64String(hashValue);
}
2023-02-16 14:08:50 +00:00
public static String GenerateSalt()
{
2023-02-16 14:08:50 +00:00
var bytes = new Byte[128 / 8];
var rng = RandomNumberGenerator.Create();
rng.GetBytes(bytes);
return Convert.ToBase64String(bytes);
}
}