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