Files
SystemExtensions/SystemExtensions.NetStandard.Security/Hashing/HMACSha256Service.cs
T

11 lines
278 B
C#

using System.Security.Cryptography;
namespace System.Security.Hashing;
public sealed class HMACSha256Service : BaseHMACService<HMACSHA256>, IHMACSha256Service
{
protected override HMACSHA256 GetHashAlgorithm(byte[] key)
{
return new HMACSHA256(key);
}
}