Show / Hide Table of Contents

Class GeneratedKey

The reponse to the regeuest to generate the key to encrypt or decrypt the data.

Inheritance
object
GeneratedKey
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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 includePlaintextKey parameter and sets its value to "true".

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 includePlaintextKey parameter and sets its value to "true".

In this article
Back to top