HelloTeam,
At present we are able to do encryption and decryption for specific field from my JSON request payload.
I have requirement to encrypt and decrypt the multiple json values from my request payload(payload content has around 50 key- value pairs).
Example:
Request:
{
"key1": "value1",
"key2":"value2,
.........
}
Response:
{
"key1": "******",
"key2":"*******,
.........
}
Is it possible by using this https://github.com/DinoChiesa/ApigeeEdge-CustomPolicy-RsaCrypto ?
Thank you,