I'm in the need of decrypting a string that was encrypted using AES. I was thinking of using the CryptoJS library (https://code.google.com/p/crypto-js).
Currently struggling with how I can import this into Mirth to be able to use it. The only way I've seen to import external libraries is by
tried using the URL between the parentheses but got an error that it doesn't accept http strings. So my question is how can I import this libary? Will I need to make something similar in a java jar and add that in my lib/custom folder?
Any other recommendations of how I can decrypt a string that used AES for encryption are welcomed!
Currently struggling with how I can import this into Mirth to be able to use it. The only way I've seen to import external libraries is by
Code:
importPackage(Packages.org.apache.http.client);
Any other recommendations of how I can decrypt a string that used AES for encryption are welcomed!
Comment