jwtBuilder - JWT Builder (jwtBuilder)

Information about configuring the builder. The elements and attributes that you specify are used to build the token.

NameTypeDefaultDescription
idstringA unique configuration ID.
issuerstringAn Issuer is a case-sensitive URL using the HTTP or HTTPS scheme that contains scheme, host, and optionally port number and path components.
jwkEnabledbooleanfalseIndicates whether to use JWK to sign the token.
expiryA period of time with hour precision2hIndicates the token expiration time. Specify a positive integer followed by the unit of time, which can be hours (h). For example, specify 12 hours as 12h.
scopestringscope.desc=Specify a white space separated list of OAuth scopes.
signatureAlgorithm
  • HS256
  • RS256
RS256Specifies the signature algorithm that will be used to sign the JWT token.
HS256
Use the HS256 signature algorithm to sign and verify tokens.
RS256
Use the RS256 signature algorithm to sign and verify tokens.
sharedKeyReversably encoded password (string)Specifies the string that will be used to generate the shared keys. The value can be stored in clear text or in the more secure encoded form. Use the securityUtility tool with the encode option to encode the shared key.
jtibooleanfalseIndicates whether to generate a unique id for the token.
keyStoreRefA reference to top level keyStore element (string).A keystore containing the private key necessary for signing the token with an asymmetric algorithm.
keyAliasstringA key alias name that is used to locate the private key for signing the token with an asymmetric algorithm.

audiences

The trusted audience list to be included in the aud claim in the JSON web token.

claims

Specify a comma separated list of claims to include in the token.