EncryptionRangeExtensions
using Azure.Storage.Cryptography.Models;
namespace Azure.Storage.Blobs
{
internal static class EncryptionRangeExtensions
{
public static int GetTotalRegionLength(this EncryptedRegionInfo info)
{
return info.NonceLength + info.DataLength + 16;
}
}
}