-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Info Fetcher: Enable TLS with WebPKI trust by default #517
Comments
This actually pertains to |
Some considerations that seem relevant (about the whole ambiguity of
|
Refinement question:
|
Good question. I think I'd prefer to have this in operator-rs, and not introduce an inconsistency. Also because I do not think that this is important or urgent enough to introduce an inconsistency. It makes sense to me to actually do this for all TLS, so I would take this out of the UIF first release epic and instead widen the scope to "better default TLS" (in general, not just UIF) and handle it like that. my 2cts |
Currently, the following configuration leads to the HTTP client connecting without TLS:
And to enable TLS, you have to jump through a few hoops by adding:
In this day-in-age, I think it is expected to default to TLS (and the CRA requires secure-by-default).
So I propose that we
impl Default
fortls
:... and explicit steps are to be taken to disable TLS or to ignore verification (or set internal PKI), eg:
or
The text was updated successfully, but these errors were encountered: