Files
2024-09-08 17:13:48 +02:00

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();
}