using System.Security.Cryptography; namespace System.Security.Hashing; public sealed class MD5HashingService : BaseHashingService, IMD5HashingService { protected override MD5 GetHashAlgorithm() { return MD5.Create(); } }