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