I have got two application where one application receives the xml request and encrypt the field password and send the xml request to another application.
Another application receives the xml request and decrypt the field password using the same key.Is it possible to achieve it in Mule 4 without using java component. My request looks like below:
<test>
<username>camel</username>
<password>abcdef</password>
</test>
I think we could do this using this module (https://docs.mulesoft.com/mule-runtime/4.3/dw-crypto).I could see the examples for encrypting not for decrypting. It would be great if someone can help me with this request