Azure.Storage.StorageCrc64Composer
Helper code for composing crc64 values together.
namespace Azure.Storage
{
internal static class StorageCrc64Composer
{
public static Memory<byte> Compose(params(byte[] Crc64, long OriginalDataLength)[] partitions);
public static Memory<byte> Compose(IEnumerable<(byte[] Crc64, long OriginalDataLength)> partitions);
public static ulong Compose(IEnumerable<(ulong Crc64, long OriginalDataLength)> partitions);
}
}