Azure.Storage.Blobs.Models.CustomerProvidedKey
Wrapper for an encryption key to be used with client provided key server-side encryption.
namespace Azure.Storage.Blobs.Models
{
public readonly struct CustomerProvidedKey : IEquatable<CustomerProvidedKey>
{
public string EncryptionKey { get; }
public string EncryptionKeyHash { get; }
public EncryptionAlgorithmType EncryptionAlgorithm { get; }
public CustomerProvidedKey(string key);
public CustomerProvidedKey(byte[] key);
public static bool operator ==(CustomerProvidedKey left, CustomerProvidedKey right);
public static bool operator !=(CustomerProvidedKey left, CustomerProvidedKey right);
public bool Equals(CustomerProvidedKey other);
}
}