Azure.Storage.Cryptography.Models.EncryptionData
class 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();
}
}