Creating a processing JSON Web Token profile
Create a processing JSON Web Token (JWT) profile to specify how Pega Platform validates and decrypts each JSON Web Token it receives.
The processing JWT profile data instance consists of one or more claims validations, claims mappings, and a security configuration specifying no security, signing, decryption, or a combination that uses both signing and decryption. The profile can also specify a token lifetime and timeout option.
You can use JWTs to exchange information securely between Pega Platform and another party and to decrypt the data to be transmitted. Common uses for JWTs in Pega Platform include:
JWT uses in Pega Platform | The JWT |
Authentication | holds user information that can be used by another party to authenticate the identity of the user presenting the token |
Session management | ensures the secure exchange of information during user authenticated sessions. |
- In the navigation panel, click .
- Click Create.
- In the Token Type field, select JSON Web Token.
- In the Purpose field, select Processing, to create a token profile for processing JWTs.
- Enter a token name and short description.
- Click Create and open.
- On the Processing tab, in the Claims
validation section, click the Add icon to configure
validations that are applied to the expected claims.
- In the Name field, press the Down arrow key and select one
of the available claims:
- Issuer (iss) – Specifies the principal that issued the JWT.
- Audience (aud) – Specifies the intended recipients of the JWT.
- Subject (sub) – Specifies the principal that is the subject of the JWT.
- In the Map from field, select Constant or Clipboard to indicated if the claim is mapped from a text string you enter or a property name on the clipboard.
- In the Compare with field, enter the constant or clipboard property with which the claim should be compared.
- In the Name field, press the Down arrow key and select one
of the available claims:
- In the Claims mapping section, click the
Add icon to configure mapping for custom claims to clipboard
properties.
- In the Claim name field, enter the custom claim name.
- In the Property field, press the Down arrow key, and select the property name to which this custom claim is mapped.
- In the field, specify whether to process JSON Web Encryption (JWE) token for
content decryption, or a signed JWT for a signature.
- Signature verification – Specify how to use signature verification of the token by completing step 10.
- Decryption – Specify how to decrypt the token by completing step 11.
- Decryption and signature verification – Specify details for processing a token that has been signed and encrypted by completing step 10 and step 11.
- None – Disable security by skipping steps 10 and 11.
- For JWT signature verification, in the JSON Web Signature (JWS)
section, do the following steps. If you previously entered values on the
Generation tab, some of these fields might be already
populated.
Choices Actions For asymmetric signature verification In the Truststore field, press the Down arrow key, and select the Truststore that is used for the JWT signature validation. For symmetric signature verification - In the Keystore field, press the Down arrow key, and select an existing keystore name.
- In the Alias field, press the Down arrow key, and select the alias name of the private key in this keystore used to decrypt the JWT.
- In the Password field, enter the keystore password
- For JWE content decryption, in the JSON Web Decryption (JWE)
section, do the following steps. If you previously entered values on the
Generation tab, some of these fields might be already
populated.
- In the Encryption type list, select either Asymmetric or Symmetric.
- In the Key encryption algorithm list, select an algorithm for decrypting the metadata.
- In the Keystore field, press the Down arrow key, and select the keystore name.
- In the Alias field, press the Down arrow key and select the alias name of the private key in this keystore used to decrypt the JWT.
- In the Password field, enter the keystore password.
- In the Token lifetime section, in the Allowed time to account for clock skew (in seconds) field, enter the time difference between two different servers that are out of sync.
- In the Advanced mapping section, in the Header as JSON string field, enter the clipboard property that the decoded header is assigned to and that can be used for any user-defined JWT processing logic.
- In the Payload as JSON string field, enter the clipboard property the decoded payload is assigned to and can be used for any user-defined JWT processing logic.
- Click Save.
Previous topic Previewing the JSON Web Token profile Next topic Configuring an activity to process a JSON Web Token