Class GeneratedKey
The reponse to the regeuest to generate the key to encrypt or decrypt the data.
Inherited Members
Namespace: Oci.KeymanagementService.Models
Assembly: OCI.DotNetSDK.Keymanagement.dll
Syntax
public class GeneratedKey
Properties
Ciphertext
Declaration
[Required(ErrorMessage = "Ciphertext is required.")]
[JsonProperty(PropertyName = "ciphertext")]
public string Ciphertext { get; set; }
Property Value
Type | Description |
---|---|
string | The encrypted data encryption key generated from a master encryption key. |
Remarks
Required
Plaintext
Declaration
[JsonProperty(PropertyName = "plaintext")]
public string Plaintext { get; set; }
Property Value
Type | Description |
---|---|
string | The plaintext data encryption key, a base64-encoded sequence of random bytes, which is
included if the GenerateDataEncryptionKey
request includes the |
PlaintextChecksum
Declaration
[JsonProperty(PropertyName = "plaintextChecksum")]
public string PlaintextChecksum { get; set; }
Property Value
Type | Description |
---|---|
string | The checksum of the plaintext data encryption key, which is included if the
GenerateDataEncryptionKey
request includes the |