Data Encryption Keys (v1)

Create a dek

post/dek-registry/v1/keks/{name}/deks

Path parameters

namestring required

Name of the kek

Request body

subjectstring

Subject of the dek

versioninteger

Version of the dek

algorithm'AES128_GCM' | 'AES256_GCM' | 'AES256_SIV'

Algorithm of the dek

encryptedKeyMaterialstring

Encrypted key material of the dek

deletedboolean

Whether the dek is deleted

Example request

{
  "subject": "subject",
  "encryptedKeyMaterial": "encryptedKeyMaterial",
  "version": 0,
  "algorithm": "AES128_GCM"
}

Response

The create response

Changes