Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Microsoft.IdentityModel.Tokens/Delegates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ namespace Microsoft.IdentityModel.Tokens
/// <param name="validationParameters">The <see cref="ValidationParameters"/> to be used for validating the token.</param>
/// <param name="callContext">The <see cref="CallContext"/> to be used for logging.</param>
/// <returns>The <see cref="SecurityKey"/> used to decrypt the token.</returns>
internal delegate IList<SecurityKey> ResolveTokenDecryptionKeyDelegate(string token, SecurityToken securityToken, string kid, ValidationParameters validationParameters, CallContext? callContext);
internal delegate IList<SecurityKey> DecryptionKeyResolverDelegate(string token, SecurityToken securityToken, string kid, ValidationParameters validationParameters, CallContext? callContext);

/// <summary>
/// Validates the signature of the security token.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public SignatureValidationDelegate SignatureValidator
/// <remarks>
/// This <see cref="SecurityKey"/> will be used to decrypt the token. This can be helpful when the <see cref="SecurityToken"/> does not contain a key identifier.
/// </remarks>
public ResolveTokenDecryptionKeyDelegate TokenDecryptionKeyResolver { get; set; }
public DecryptionKeyResolverDelegate TokenDecryptionKeyResolver { get; set; }

/// <summary>
/// Gets the <see cref="IList{T}"/> that is to be used for decrypting inbound tokens.
Expand Down
Loading