I want to implement two level Security in my REST web services.
Transport layer For point-to-point security (transport layer) i have decided to use HTTPS.
Message layer (end to end) I need the json data(very sensitive) to be in encrypted form which can only be decrypted by intended user.
I need some suggestions how i can implement this? IS there any web standards like WS-Security in SOAP which we can use. I came across JSON Web Encryption (JWE), but not sure would it suffice my objective.