Sign
- Print
- PDF
Sign
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Summary
Generate a signature value of up to 8 KB of data with a specified master key (secret key) (typically passing a hash of the data to be signed). The request can only be made with the key type used for signature/validation.
POST https://kms.apigw.ntruss.com/keys/v1/{keyTag}/sign
POST https://kms.apigw.ntruss.com/keys/v2/{keyTag}/sign
Request
Request parameters
Parameter name | Type | Description |
---|---|---|
keyTag | String (Required) | Tag value of the master key to use for the signature |
Request body
{
"data" : string
}
Parameter name | Type | Description |
---|---|---|
data | String (Required) | - Data to generate the signature value (up to 8 KB) Need to be Base64-encoded |
Response
Response body
{
"signature" : string
}
Parameter name | Type | Description |
---|---|---|
signature | String | - Signature value data Consist of a KMS prefix and a Base64-encoded signature value |
Was this article helpful?