You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the precedence for token decryption keys is:
TokenValidationParameters.TokenDecryptionKeyResolver, if set.
TokenValidationParameters.TokenDecryptionKey, if set and key ID matches.
TokenValidationParameters.TokenDecryptionKeys, if set and contains any keys where key ID matches.
TokenValidationParameters.TokenDecryptionKey, TokenValidationParameters.TokenDecryptionKeys, and TokenDecryptionKeys from configuration.
Signature validation has similar logic and also has TryAllIssuerSigningKeys flag as a fallback.
Add TryAllDecryptionKeys flag, which when set, will enable validating tokens if key IDs don't match. If not set, only keys with matching key IDs will be used.
The text was updated successfully, but these errors were encountered:
pmaytak
added
Bug
Product is not functioning as expected
P1
More important, prioritize highly
labels
Feb 13, 2025
Currently the precedence for token decryption keys is:
TokenValidationParameters.TokenDecryptionKeyResolver
, if set.TokenValidationParameters.TokenDecryptionKey
, if set and key ID matches.TokenValidationParameters.TokenDecryptionKeys
, if set and contains any keys where key ID matches.TokenValidationParameters.TokenDecryptionKey
,TokenValidationParameters.TokenDecryptionKeys
, andTokenDecryptionKeys
from configuration.Signature validation has similar logic and also has
TryAllIssuerSigningKeys
flag as a fallback.Add
TryAllDecryptionKeys
flag, which when set, will enable validating tokens if key IDs don't match. If not set, only keys with matching key IDs will be used.The text was updated successfully, but these errors were encountered: