[Feature] MSI V2 : add mTLS PoP support with cache‑correct auth scheme #5491
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This pull request implements support for mTLS PoP (Mutual TLS Proof-of-Possession) tokens in the Managed Identity authentication flow. The main improvements include proper handling and persistence of binding certificates, ensuring cache lookups use the correct authentication scheme, and updating tests to validate mTLS PoP scenarios. These changes make sure that tokens are acquired and cached securely when mTLS PoP is requested, and that expired certificates are handled correctly.
Managed Identity mTLS PoP support and certificate handling:
MtlsCertificate
property toAcquireTokenForManagedIdentityParameters
and ensured it is passed through the authentication flow for mTLS PoP requests. [1] [2]ManagedIdentityAuthRequest
to apply theMtlsPopAuthenticationOperation
when a binding certificate is available, persist the certificate for future cache lookups, and bypass cache when no valid certificate is present. [1] [2] [3] [4]Authentication scheme and request parameter enhancements:
AuthenticationOperationOverride
toAuthenticationRequestParameters
, allowing per-request authentication scheme overrides, and updated the effective authentication scheme selection logic. [1] [2]ManagedIdentityClient certificate persistence:
MtlsBindingCertificate
property inManagedIdentityClient
to persist and manage the lifecycle of the binding certificate, including safe disposal of old certificates.Unit test improvements for mTLS PoP:
BindingCertificate
in mTLS PoP scenarios and verify correct caching and token source behavior. [1] [2] [3] [4]Minor logging and formatting fixes: