OAuthJWTEncryption
The encryption algorithm to be used in JWT authentication.
Data Type
string
Default Value
"RS256"
Remarks
This property can take one of the following values:
RS256 | RS256 (RSA Signature with SHA-256) is an asymmetric encryption method used for signing JSON Web Tokens. |
RS384 | RS384 (RSA Signature with SHA-384) is an asymmetric encryption method used for signing JSON Web Tokens. |
RS512 | RS512 (RSA Signature with SHA-512) is an asymmetric encryption method used for signing JSON Web Tokens. |
ES256 | ES256 (Elliptic Curve Digital Signature Algorithm (ECDSA) using the P-256 curve and SHA-256 as the hashing algorithm) is an asymmetric encryption method used for signing JSON Web Tokens. |
ES384 | ES384 (Elliptic Curve Digital Signature Algorithm (ECDSA) using the P-384 curve and SHA-384 as the hashing algorithm) is an asymmetric encryption method used for signing JSON Web Tokens. |
ES512 | ES512 (Elliptic Curve Digital Signature Algorithm (ECDSA) using the P-512 curve and SHA-512 as the hashing algorithm) is an asymmetric encryption method used for signing JSON Web Tokens. |