frostfs-sdk-csharp/src/FrostFS.SDK.Cryptography/ArrayHelper.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

38 lines
No EOL
920 B
C#

using System;
using System.Linq;
using System.Runtime.CompilerServices;
namespace FrostFS.SDK.Cryptography;
internal static class ArrayHelper
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static byte[] Concat(params byte[][] buffers)
{
var length = buffers.Sum(buffer => buffer.Length);
var dst = new byte[length];
var p = 0;
foreach (var src in buffers)
{
Buffer.BlockCopy(src, 0, dst, p, src.Length);
p += src.Length;
}
return dst;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void GetRevertedArray(ReadOnlySpan<byte> source, byte[] data)
{
if (source.Length != 0)
{
int i = 0;
int j = source.Length - 1;
while (i < source.Length)
{
data[i++] = source[j--];
}
}
}
}