I want to implement two level security in my REST web services.
Transport layer For point-to-point security (transport layer), I decided to use HTTPS.
Message level (end to end) I need the json data (very sensitive) to be encrypted, which can only be decrypted by the intended user.
I need suggestions, how can I implement this? Are there any web standards like WS-Security in SOAP that we can use. I came across JSON Web Encryption (JWE) but not sure if my goal is enough for me.
json security rest web-services jwe
shashankaholic
source share