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);
}
}