I would like to use "forge" as part of iFlow JavaScript, how can import "node-forge" to access this below function in iFlow JavaScript. forge.pki.decryptRsaPrivateKey
In the iFlow javascript file, I would like to use the below two functions to decrypt a private key using forge. How can I use "forge" in the iFlow environment? function loadPrivateKey(privateKeyPem, privateKeyPassphrase) { return forge.pki.decrypt...
Can I use "forge" in iFlow? I would like to migrate the below code, which is used in the PostMan environment, to build the signature header.function loadPrivateKey(privateKeyPem, privateKeyPassphrase) {return forge.pki.decryptRsaPrivateKey(privateKey...