Class CryptoHashConfig
Pseudonymization method that generates surrogates via cryptographic hashing. Uses SHA-256. Outputs a
base64-encoded representation of the hashed output (for example,
L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=
).
Implements
Inherited Members
Namespace: Google.Apis.CloudHealthcare.v1.Data
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class CryptoHashConfig : IDirectResponseSchema
Properties
CryptoKey
An AES 128/192/256 bit key. Causes the hash to be computed based on this key. A default key is generated for
each Deidentify operation and is used when neither crypto_key
nor kms_wrapped
is specified. Must not be
set if kms_wrapped
is set.
Declaration
[JsonProperty("cryptoKey")]
public virtual string CryptoKey { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
KmsWrapped
KMS wrapped key. Must not be set if crypto_key
is set.
Declaration
[JsonProperty("kmsWrapped")]
public virtual KmsWrappedCryptoKey KmsWrapped { get; set; }
Property Value
Type | Description |
---|---|
KmsWrappedCryptoKey |