Francesco Clementi
Francesco Clementi

Reputation: 2102

How to encrypt REST body with openid connect OIDC

The big picture is:

How can I implement encryption of the rest body?

I saw JWE but it seems that it encrypt only the JWT and it's not clear how to implement JWE with an openid external provider.

Upvotes: 0

Views: 31

Answers (1)

Gary Archer
Gary Archer

Reputation: 29301

It is usual to let SSL take care of this for you, as the most widely used and easy to manage encryption standard.

There are special cases where double encryption is used, eg a WorldPay device will do additional encryption of credit card numbers before sending them to the server.

If you have special requirements and need more than SSL, please explain them.

Upvotes: 1

Related Questions