Encrypt ID tokens and backchannel logout tokens
PingOne Advanced Identity Cloud supports encrypting ID tokens and backchannel logout tokens to protect them against tampering attacks, outlined in the JSON Web Encryption specification (RFC 7516).
ID tokens and backchannel logout tokens share the same encryption configuration. You encrypt both or none.
-
Go to Realms > Realm Name > Applications > OAuth 2.0 > Client Name.
-
On the Signing and Encryption tab, select Enable ID Token Encryption.
-
In the Id Token Encryption Algorithm field, enter the algorithm PingOne Advanced Identity Cloud will use to encrypt ID tokens and backchannel logout tokens:
Supported encryption algorithms
-
A128KW
– AES Key Wrapping with 128-bit key derived from the client secret. -
A192KW
– AES Key Wrapping with 192-bit key derived from the client secret. -
A256KW
– AES Key Wrapping with 256-bit key derived from the client secret. -
RSA-OAEP
– RSA with Optimal Asymmetric Encryption Padding (OAEP) with SHA-1 and MGF-1. -
RSA-OAEP-256
– RSA with OAEP with SHA-256 and MGF-1. -
RSA1_5
– RSA with PKCS#1 v1.5 padding (not recommended). -
dir
– Direct encryption with AES using the hashed client secret. -
ECDH-ES
– Elliptic Curve Diffie-Hellman -
ECDH-ES+A128KW
– Elliptic Curve Diffie-Hellman + AES Key Wrapping with 128-bit key. -
ECDH-ES+A192KW
– Elliptic Curve Diffie-Hellman + AES Key Wrapping with 192-bit key. -
ECDH-ES+A256KW
– Elliptic Curve Diffie-Hellman + AES Key Wrapping with 256-bit key. -
X25519
– Elliptic Curve Diffie-Hellman with Curve25519. -
X448
– Elliptic Curve Diffie-Hellman with Curve448.
Only the
P-256
,P-384
, andP-521
curves are supported. -
-
In the ID Token Encryption Method field, enter the method PingOne Advanced Identity Cloud will use to encrypt ID tokens and backchannel logout tokens:
Supported encryption methods
-
A128CBC-HS256
– AES 128-bit in CBC mode using HMAC-SHA-256-128 hash (HS256 truncated to 128 bits) -
A192CBC-HS384
– AES 192-bit in CBC mode using HMAC-SHA-384-192 hash (HS384 truncated to 192 bits) -
A256CBC-HS512
– AES 256-bit in CBC mode using HMAC-SHA-512-256 hash (HS512 truncated to 256 bits) -
A128GCM
– AES 128-bit in GCM mode -
A192GCM
– AES 192-bit in GCM mode -
A256GCM
– AES 256-bit in GCM mode
-
-
If you select an RSA encryption algorithm, perform one of the following actions:
-
Enter the public key in the ID Token Encryption Public Key field.
-
Enter a JWK set in the Json Web Key field.
-
Enter a URI containing the public key in the Json Web Key URI field.
-
-
If you selected an ECDH-ES encryption algorithm, perform one of the following actions:
-
Enter a JWK set in the Json Web Key field.
-
Enter a URI containing the public key in the Json Web Key URI field.
-
-
If you select an algorithm other than RSA or ECDH-ES, select the Core tab and do either of the following:
-
Store the private key/secret in the Client secret field.
-
Set a Secret Label Identifier and store the secret in a secret store.
PingOne Advanced Identity Cloud uses the Secret Label Identifier to create a specific secret label for each OAuth 2.0 client. The secret label takes the form
am.applications.oauth2.client.identifier.secret
where identifier is the value of Secret Label Identifier.The identifier can only contain alphanumeric characters
a-z
,A-Z
,0-9
, and periods (.
). It can’t start or end with a period.If you set a Secret Label Identifier and PingOne Advanced Identity Cloud finds a matching secret in a secret store, the Client secret is ignored.
-
|