mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
11 lines
250 B
C#
11 lines
250 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace System.Security.Hashing;
|
|
public sealed class MD5HashingService : BaseHashingService<MD5>, IMD5HashingService
|
|
{
|
|
protected override MD5 GetHashAlgorithm()
|
|
{
|
|
return MD5.Create();
|
|
}
|
|
}
|