-
Notifications
You must be signed in to change notification settings - Fork 104
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
Implement the TLS extension #62
Comments
Yes, I'm willing to make a pull request for that since nonecorn is forked from hypercorn and should be 100% compatible with upstream. But since nonecorn used to trace gitlab's branch of hypercorn, it seems that github is preventing me from making that pull request :) |
Does the nonecorn code implements the full specification? When I looked it was similar to the Uvicorn PR in that not everything could be implemented. If so I think we need to change the ASGI specification before we commit to implementing it. |
Indeed, nonecorn, just like the uvicorn PR, did not implement the full specification, it left some keys to None, and according to the spec, those keys can be set to None. So which part do you think can't be implemented? I'll dig deeper and have a try. Besides, I only ported it to asyncio, trio is not implemented yet, therefore more efforts is needed. |
Required for OpenAPI mutualTLS authentication - e.g. FastAPI/starlette/hypercorn. |
unit testing mutualTLS requires asgi tls extensions switch from hypercorn to nonecorn pgjones/hypercorn#62
unit testing mutualTLS requires asgi tls extensions switch from hypercorn to nonecorn pgjones/hypercorn#62
I'm migrating urllib3 from Tornado to Hypercorn to get HTTP/2 support. urllib3 has a few tests about client certificates, and relies on its test server to make sure the correct certificate was used. I have a rough initial draft that supports only what I needed for urllib3 here: urllib3/hypercorn@main...tls-extension. I'll try to extend it to create a proper pull request. I don't think this should be enabled by default as it's a niche use case and this could easily affect performance. How should this be exposed in (Something else I need is the alpn_protocol, that I bundled in the TLS extension, but it's not in the ASGI specification. I'd like to submit this to the specification once the existing is implemented.) |
I'd start off with nonecorn instead - it does asgi tls ext already. |
Yes but it suffers from a few issues: it does not support Trio (which is what urllib3 uses), it's a bit hacky (various functions accept |
Would be great if you could get tlsext into hypercorn. Inspiration for unit tests using pytest_asyncio/trustme - https://github.com/commonism/aiopenapi3/blob/e9294f24ad5d7fa219625d401cbd0ad323893f45/tests/tls_test.py |
any update ? |
yes - encode/uvicorn#1119 |
See spec, Uvicorn, and nonecorn.
Looks as if the specification is not implementable as currently defined, therefore I will wait to see if the specification is updated.
The text was updated successfully, but these errors were encountered: