Replies: 1 comment 7 replies
-
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I tried my new API project with .netCore 3.1, where Client Certiticate Authentication is needed.
According to official recommendations, the validation/trust check is done in IIS, and the authorization is done in my code
OnCertificateValidated = context => {...}
I did exactly what "Configure certificate authentication" says, however the performance is a disaster.
The process of IIS cert. validation takes 10 to 15 secs. And the IIS does it every 1 or two minutes.
I see there is an option in the .net 5 previews called AddCertificateCache().
Does anymore know if this cache option is helpful? or it only affects cert. validation throug Kestrel or also IIS? Should I ask the IIS team?
Beta Was this translation helpful? Give feedback.
All reactions