MULE 4 - Secure Properties config issue changing the algorithm

Viewed 29

I did all the encryption process setting a secureKey but I chose Blowfish algorithm, but now I need to use AES as the algorithm but I changed the config in the secure property config (in my global) it seems that is not recognizing the algorithm change, and if I want to encrypt I still need to choose Blowfish and the same secureKey, to desencrypy or encrypt

Do you know why? or what can I do to modify the algorithm?

1 Answers

If you encrypt information with an encryption algorithm you must use the same algorithm to decrypt it. You can not use a different algorithm. That's how encryption work.

Encrypt again the properties with AES this time and then use also AES in the secure properties configuration.

Related