using System.Hashing; using System.Security.Cryptography; namespace System.Security.Hashing; public sealed class Sha256HashingService : BaseHashingService, ISha256HashingService { protected override SHA256 GetHashAlgorithm() => SHA256.Create(); }