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