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