mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 14:39:28 +00:00
11 lines
278 B
C#
11 lines
278 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace System.Security.Hashing;
|
|
public sealed class HMACSha512Service : BaseHMACService<HMACSHA512>, IHMACSha512Service
|
|
{
|
|
protected override HMACSHA512 GetHashAlgorithm(byte[] key)
|
|
{
|
|
return new HMACSHA512(key);
|
|
}
|
|
}
|