<PackageReference Include="Azure.Storage.Blobs" Version="12.27.0" />

Azure.Storage.Cryptography.Models.ClientSideEncryptionAlgorithm

Specifies the encryption algorithm used to encrypt and decrypt a blob.
namespace Azure.Storage.Cryptography.Models { internal readonly struct ClientSideEncryptionAlgorithm { public static ClientSideEncryptionAlgorithm AesCbc256 { get; } public static ClientSideEncryptionAlgorithm AesGcm256 { get; } public ClientSideEncryptionAlgorithm(string value); public static bool operator ==(ClientSideEncryptionAlgorithm left, ClientSideEncryptionAlgorithm right); public static bool operator !=(ClientSideEncryptionAlgorithm left, ClientSideEncryptionAlgorithm right); public static implicit operator ClientSideEncryptionAlgorithm(string value); public bool Equals(ClientSideEncryptionAlgorithm other); } }