mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-21 00:29:29 +00:00
More hashing services and HMAC services
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user