<PackageReference Include="Azure.Storage.Blobs" Version="12.28.0-beta.1" />

Azure.Storage.Cryptography.Models.EncryptionData

Represents the encryption data that is stored on the service.
namespace Azure.Storage.Cryptography.Models { internal class EncryptionData { public string EncryptionMode { get; set; } public KeyEnvelope WrappedContentKey { get; set; } public EncryptionAgent EncryptionAgent { get; set; } public byte[] ContentEncryptionIV { get; set; } public EncryptedRegionInfo EncryptedRegionInfo { get; set; } public IDictionary<string, string> KeyWrappingMetadata { get; set; } public EncryptionData(); } }