Key questions about this property
The answers below summarize the purpose, scope, default effect, and review scenarios for this property.
| What does it do? |
This property defines the secret passphrase for SSO encryption and decryption, impacting secure authentication processes. |
| What area does it affect? |
Single Sign-On (SSO) |
| What does the default mean? |
No default value is documented in this property record. |
| When should you review it? |
Review this property when configuring or troubleshooting SSO integrations. |
Out of the box property record
Raw metadata from the property record.
| Property name |
glide.authenticate.secret_key |
| Sys ID |
268a8ec20a0a032f010c34ae39fc0a52 |
| Type |
password |
| Application |
Global |
| Default value |
|
| Description |
Secret passphrase for single sign-on (SSO) encryption/decryption: |
| Updated |
2024-05-25 04:30:09 |
Sources
Official references and nearby text excerpts where this property appears.
Context preview
Snippet 1
... DigestSingleSignOnNonce.prototype = { process : function() { var headerKey = GlideProperties.get("glide.authenticate.header.key", "SM_USER"); var headerDigestKey = GlideProperties.get("glide.authenticate.header.encrypted_key", "DIGEST"); var headerNonceKey = GlideProperties.get("glide.authenticate.header.nonce_key", "NCE"); var fieldName = GlideProperties.get("glide.authenticate.header.value", "user_name"); var fkey = GlideProperties.get("glide.authenticate.secret_key"); // Look in the Headers var data = request.getHeader(headerKey); var encdata = request.getHeader(headerDigestKey); var nonce = request.getHeader(headerNonceKey); // If not, then check the URL Parameters if (data == null || ...
Related properties