Creating a Digital Signature
The post /v1/cckm/sap/hyok/v1/keystores/{keystore_id}/keys/{external_key_id}/asymmetric-sign
API creates a digital signature for a message or message digest using the private key of an asymmetric key stored in a keystore on CipherTrust Manager. The key specified in the key_id
path variable MUST be an asymmetric key with SIGN and VERIFY attributes.
The asymmetric sign API can sign messages of up to 4096 bytes. To sign a larger message, generate a hash digest of the message, and then provide the hash digest. The key version ID is optional, and if it isn't provided, the latest version of the key is used to sign the message or message digest.
When ‘message_type’ is DIGEST
, the length of the message value must match the length of hashed messages for the specified signing algorithm.
Request Parameters
Parameter | Type | Description |
---|---|---|
message | string | Message or message digest to sign. Before encoding, the maximum length of the message is 4096 bytes. |
message_type | string | The type of the message. It can be RAW or DIGEST . |
algorithm | string | The algorithm of signing. It can be RSASSA_PSS_SHA_256 , RSASSA_PSS_SHA_384 , or RSASSA_PSS_SHA_512 . |
sap_tenant_id | string | ID of the SAP Tenant. |
Example Request
Example Response
Response Codes
Response Code | Description |
---|---|
200 | Ok |
400 | Bad request |
401 | Unauthorized |
404 | Not found |
403 | Forbidden |
500 | Internal server error |
Refer to HTTP status codes for details.