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