frostfs-sdk-csharp/src/FrostFS.SDK.Client/Models/Misc/CheckSum.cs
Pavel Gross 87fe8db674
All checks were successful
DCO / DCO (pull_request) Successful in 21s
lint-build / dotnet8.0 (pull_request) Successful in 35s
lint-build / dotnet8.0 (push) Successful in 34s
/ Publish NuGet packages (push) Successful in 48s
[#43] Client: Memory optimization
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2025-03-31 11:40:04 +03:00

21 lines
No EOL
417 B
C#

using System;
using FrostFS.SDK.Cryptography;
namespace FrostFS.SDK;
public class CheckSum
{
private byte[]? hash;
private string? text;
public static CheckSum CreateCheckSum(byte[] content)
{
return new CheckSum { hash = DataHasher.Sha256(content.AsSpan()) };
}
public override string ToString()
{
return text ??= BitConverter.ToString(hash).Replace("-", "");
}
}