Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
interface Duende.​IdentityServer.​Stores.​ISigningCredentialStore
Assembly: Duende.IdentityServer
Provides the active signing credentials used by IdentityServer to sign tokens such as identity tokens and JWT access tokens. The returned <see cref="T:Microsoft.IdentityModel.Tokens.SigningCredentials" /> represent the current primary signing key. Implement this interface to supply signing credentials from a custom key management solution.
Methods
System.​Threading.​Tasks.​Task<​Microsoft.​IdentityModel.​Tokens.​SigningCredentials>
GetSigningCredentialsAsync​(System.​Threading.​CancellationToken ct)
Gets the active signing credentials used to sign tokens.
Returns The <see cref="T:Microsoft.IdentityModel.Tokens.SigningCredentials" /> that IdentityServer uses to sign tokens.
ct
The cancellation token.