AWS kms documentation change
Summary
Added SAP ABAP code example for Sign API operation
Security assessment
Adds documentation for cryptographic signing operations which is a security feature, but contains no evidence of addressing a specific vulnerability.
Diff
diff --git a/kms/latest/developerguide/example_kms_Sign_section.md b/kms/latest/developerguide/example_kms_Sign_section.md index d1cf7ecfa..2d0994415 100644 --- a//kms/latest/developerguide/example_kms_Sign_section.md +++ b//kms/latest/developerguide/example_kms_Sign_section.md @@ -249,0 +250,38 @@ There's more on GitHub. Find the complete example and learn how to set up and ru +SAP ABAP + + +**SDK for SAP ABAP** + + +###### Note + +There's more on GitHub. Find the complete example and learn how to set up and run in the [AWS Code Examples Repository](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/sap-abap/services/kms#code-examples). + + + TRY. + " iv_key_id = 'arn:aws:kms:us-east-1:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab' (asymmetric key) + " iv_message contains the message to sign + " iv_signing_algorithm = 'RSASSA_PSS_SHA_256' + oo_result = lo_kms->sign( + iv_keyid = iv_key_id + iv_message = iv_message + iv_signingalgorithm = iv_signing_algorithm + ). + MESSAGE 'Message signed successfully.' TYPE 'I'. + CATCH /aws1/cx_kmsdisabledexception. + MESSAGE 'The key is disabled.' TYPE 'E'. + CATCH /aws1/cx_kmsnotfoundexception. + MESSAGE 'Key not found.' TYPE 'E'. + CATCH /aws1/cx_kmsinvalidkeyusageex. + MESSAGE 'Key cannot be used for signing.' TYPE 'E'. + CATCH /aws1/cx_kmskmsinternalex. + MESSAGE 'An internal error occurred.' TYPE 'E'. + ENDTRY. + + + + * For API details, see [Sign](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + +