Retrieve Encryption Key

get

/services/{version}/enckeys/{keyName}

Required Role: User

Retrieve details for an Encryption Key.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Encryption Key details retrieved.

Body ()
Root Schema : Oracle GoldenGate Encryption Key
Title: Oracle GoldenGate Encryption Key
This schema describes an encryption key, used to encrypt data
Match One
Show Source
Nested Schema : Oracle GoldenGate Encryption Key-x-oneOf[0]
Type: object
128-bit encryption key
Show Source
  • Allowed Values: [ "ogg:encryptKey" ]
  • Allowed Values: [ "128" ]
    Length of the encryption key, in bits
  • Minimum Length: 34
    Maximum Length: 34
    Pattern: 0x[A-Fa-f0-9]{32}
    An optional encryption key value. If not provided, one will be generated.
Nested Schema : Oracle GoldenGate Encryption Key-x-oneOf[1]
Type: object
192-bit encryption key
Show Source
  • Allowed Values: [ "ogg:encryptKey" ]
  • Allowed Values: [ "192" ]
    Length of the encryption key, in bits
  • Minimum Length: 50
    Maximum Length: 50
    Pattern: 0x[A-Fa-f0-9]{48}
    An optional encryption key value. If not provided, one will be generated.
Nested Schema : Oracle GoldenGate Encryption Key-x-oneOf[2]
Type: object
256-bit encryption key
Show Source
  • Allowed Values: [ "ogg:encryptKey" ]
  • Allowed Values: [ "256" ]
    Length of the encryption key, in bits
  • Minimum Length: 66
    Maximum Length: 66
    Pattern: 0x[A-Fa-f0-9]{64}
    An optional encryption key value. If not provided, one will be generated.
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9012/services/v2/enckeys/superkey",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9012/services/v2/enckeys/superkey",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:9012/services/v2/metadata-catalog/keyName",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:encryptKey",
        "bitLength":"128"
    }
}
Back to Top