Class DecryptDataDetails
The details of the encrypted data that you want to decrypt.
Inherited Members
Namespace: Oci.KeymanagementService.Models
Assembly: OCI.DotNetSDK.Keymanagement.dll
Syntax
public class DecryptDataDetails
Properties
AssociatedData
Declaration
[JsonProperty(PropertyName = "associatedData")]
public Dictionary<string, string> AssociatedData { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | Information that can be used to provide an encryption context for the encrypted data. The length of the string representation of the associated data must be fewer than 4096 characters. |
Ciphertext
Declaration
[Required(ErrorMessage = "Ciphertext is required.")]
[JsonProperty(PropertyName = "ciphertext")]
public string Ciphertext { get; set; }
Property Value
Type | Description |
---|---|
string | The encrypted data to decrypt. |
Remarks
Required
EncryptionAlgorithm
Declaration
[JsonProperty(PropertyName = "encryptionAlgorithm")]
[JsonConverter(typeof(StringEnumConverter))]
public DecryptDataDetails.EncryptionAlgorithmEnum? EncryptionAlgorithm { get; set; }
Property Value
Type | Description |
---|---|
DecryptDataDetails.EncryptionAlgorithmEnum? | The encryption algorithm to use to encrypt or decrypt data with a customer-managed key.
|
KeyId
Declaration
[Required(ErrorMessage = "KeyId is required.")]
[JsonProperty(PropertyName = "keyId")]
public string KeyId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the key used to encrypt the ciphertext. |
Remarks
Required
KeyVersionId
Declaration
[JsonProperty(PropertyName = "keyVersionId")]
public string KeyVersionId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the key version used to encrypt the ciphertext. |
LoggingContext
Declaration
[JsonProperty(PropertyName = "loggingContext")]
public Dictionary<string, string> LoggingContext { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | Information that provides context for audit logging. You can provide this additional data as key-value pairs to include in audit logs when audit logging is enabled. |