SECXML_DIGEST_READER is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for See
If you would like to execute this report or see the full code listing simply enter SECXML_DIGEST_READER into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: ATTR = Attribute
Selection Text: ENCSIGN = Encrypt before Sign
Selection Text: EPSE = External PSE
Selection Text: FILENAME = File Name
Selection Text: INCLC14N = Inclusive C14N
Selection Text: KEY = Symmetric key
Selection Text: NSP = Namespace
Selection Text: PUSHBACK = Pushback
Selection Text: STRFORM = STR-Transform
Title: Compute Digest with CL_SEC_SXML_READER
Text Symbol: 001 = XML Input
Text Symbol: 002 = External PSE
Text Symbol: 003 = Save Cerificate
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SSFPSE_PARAMETER CALL FUNCTION 'SSFPSE_PARAMETER' EXPORTING context = 'WSSE' applic = 'WSSKEY' IMPORTING profile = lf_ssf_profile.
SSFW_KRN_VERIFY CALL FUNCTION 'SSFW_KRN_VERIFY' EXPORTING ssftoolkit = 'SAPSECULIB' str_format = lf_ssf_form b_inenc = ' ' b_outdec = ' ' ostr_input_data = ls_signature-signedinfo ostr_signed_data = ls_sig-sig_val str_pab = lf_pab str_pab_password = ' ' str_hashalg = lf_ssf_hash str_chainfmt = 'X509v3' "#EC NOTEXT ostr_chain_data = lf_cert IMPORTING crc = lf_ssf_crc TABLES signer_result_list = lt_res_list.
SSFC_PARSE_CERTIFICATE CALL FUNCTION 'SSFC_PARSE_CERTIFICATE' EXPORTING certificate = lf_cert IMPORTING serialint = lf_serno.
CERTRULE_GET_CERTINFOS CALL FUNCTION 'CERTRULE_GET_CERTINFOS' EXPORTING certificate = lf_cert format = 1 IMPORTING subject = lf_subject issuer = lf_issuer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SECXML_DIGEST_READER - Compute Digest with CL_SEC_SXML_READER SECXML_DIGEST_READER - Compute Digest with CL_SEC_SXML_READER SECXML_DECRYPT - Decrypt SOAP message SECXML_DECRYPT - Decrypt SOAP message SECXML_C14N_WRITER - Canonized with CL_SEC_SXML_WRITER SECXML_C14N_WRITER - Canonized with CL_SEC_SXML_WRITER