The <encrypt_body> element

Directs DFHWSSE1 to encrypt the body of outbound SOAP messages, and provides information about how the messages are to be encrypted.

Used in:

Contained by:

Contains:

  1. An <algorithm> element containing the URI that identifies the algorithm used to encrypt the body of the SOAP message.
    You can specify the following algorithms:
    Algorithm URI
    Triple Data Encryption Standard algorithm (Triple DES) http://www.w3.org/2001/04/xmlenc#tripledes-cbc
    Advanced Encryption Standard (AES) algorithm with a key length of 128 bits http://www.w3.org/2001/04/xmlenc#aes128-cbc
    Advanced Encryption Standard (AES) algorithm with a key length of 192 bits http://www.w3.org/2001/04/xmlenc#aes192-cbc
    Advanced Encryption Standard (AES) algorithm with a key length of 256 bits http://www.w3.org/2001/04/xmlenc#aes256-cbc
    The public key that identifies the algorithm used to encrypt the message is sent in the SOAP message and encrypted using the key encryption algorithm RSA 1.5.
  2. A <certificate_label> element that specifies the label that is associated with a digital certificate in RACF. The digital certificate should contain the public key of the intended recipient of the SOAP message, so that it can be decrypted with the private key when the message is received.

Example

<encrypt_body>
  <algorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</algorithm>
  <certificate_label>ENCCERT02</certificate_label>
</encrypt_body>