SMimeEnvStream | java.io.InputStream The encrypted S/MIME entity (for example, the output produced by pub.smime:createEncryptedData). |
recipientCert | byte[ ] Digital certificate of the party receiving the message. |
privKey | byte[ ] Private key of the party receiving the message (that is, the party whose public key was used to encrypt the message). |
mimeData | Document MIME object containing the decrypted MIME message. |
contentDigest | String Message digest of the encrypted content, base64-encoded. (Some sites return this digest to the sender to acknowledge their receipt of the message.) |
encrypted | String Conditional. Flag indicating whether the decrypted MIME entity is encrypted. A value of: true indicates that the MIME entity is encrypted. false indicates that the MIME entity is not encrypted. |
signed | String Conditional. Flag indicating whether the decrypted MIME entity is signed. A value of: true indicates that the MIME entity is signed. false indicates that the MIME entity is not signed. |
certsOnly | String Conditional. Flag indicating whether the decrypted MIME entity is a certs-only entity. A value of: true indicates that the MIME entity is a certs-only entity. false indicates that the MIME entity is not a certs-only entity. |
stream | java.io.InputStream Conditional. The decrypted MIME entity. |
Important: | You can examine the contents of mimeData during testing and debugging. However, because the internal structure of mimeData is subject to change without notice, do not explicitly set or map data to/from these elements in your service. To manipulate or access the contents of mimeData, use only the MIME services that Integration Server provides. |