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