mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Replay improvements
- Fixed a bug in the replay cache - Made use of replay cache optional - Add more integration test cases of replay scenarios - Use TryAddTransient so that custom implementations of interfaces are possible # Conflicts: # aspnetcore-authentication-jwtbearer/src/AspNetCore.Authentication.JwtBearer/DPoP/DPoPServiceCollectionExtensions.cs
This commit is contained in:
parent
5fec3bc30c
commit
31aa865c8d
1 changed files with 1 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ public static class DPoPServiceCollectionExtensions
|
|||
services.AddOptions<DPoPOptions>();
|
||||
|
||||
services.AddTransient<DPoPJwtBearerEvents>();
|
||||
services.TryAddTransient<IDPoPProofValidator, DPoPProofValidator>();
|
||||
services.TryAddTransient<IDPoPNonceValidator, DefaultDPoPNonceValidator>();
|
||||
services.AddTransient<DPoPExpirationValidator>();
|
||||
services.TryAddTransient<IDPoPProofValidator, DPoPProofValidator>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue