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