-
Notifications
You must be signed in to change notification settings - Fork 401
Release Notes 5.2.4
BrentSchmaltz edited this page Jun 19, 2018
·
1 revision
- Added new token type JsonWebToken and JsonWebTokenHandler that naturally work with JSON.
- Creating a token is simplified to passing a JObject for the payload and SigningCredentials results in a signed JWT (JWS)
- Fixed extensiblity for CustomCryptoProvider where dispose was being called
- Solved RsaCng issue where a RsaSecurityKey is using the results of X509Certificate.GetRSAPrivateKey and GetRSAPublicKey.
- See here for a full list of issues that were fixed.
Conceptual Documentation
- Using TokenValidationParameters.ValidateIssuerSigningKey
- Scenarios
- Validating tokens
- Outbound policy claim type mapping
- How ASP.NET Core uses Microsoft.IdentityModel extensions for .NET
- Using a custom CryptoProvider
- SignedHttpRequest aka PoP (Proof-of-Possession)
- Creating and Validating JWEs (Json Web Encryptions)
- Caching in Microsoft.IdentityModel
- Resiliency on metadata refresh
- Use KeyVault extensions
- Signing key roll over