Show / Hide Table of Contents

Class Object.CustomerEncryptionData

Metadata of customer-supplied encryption key, if the object is encrypted by such a key.

Inheritance
System.Object
Object.CustomerEncryptionData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Storage.v1.Data
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class CustomerEncryptionData

Properties

EncryptionAlgorithm

The encryption algorithm.

Declaration
[JsonProperty("encryptionAlgorithm")]
public virtual string EncryptionAlgorithm { get; set; }
Property Value
Type Description
System.String

KeySha256

SHA256 hash value of the encryption key.

Declaration
[JsonProperty("keySha256")]
public virtual string KeySha256 { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top