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
According to ALPN Identification Sequence, Python should accordingly not confine ALPN values to ASCII strings in
cpython/Lib/ssl.py
Lines 565 to 575 in 1c8b3b5
cpython/Modules/_ssl.c
Lines 2064 to 2081 in 1c8b3b5
The OpenJDK proposed to use "latin-1" encoding instead of ASCII. However, @jlaine views this workaround as a hack and suggests a more agreeable and maintainable solution aiortc/aioquic#275 (comment) .
Therefore, which is the more ideal solution, or another better fix?
The text was updated successfully, but these errors were encountered:
According to RFC7301 the alpn identifier is a sequence of octets without a specified encoding. Most registrations are currently ASCII strings, except for some GREASE values.
Sorry, something went wrong.
No branches or pull requests
msoxzw commentedApr 20, 2022
According to ALPN Identification Sequence, Python should accordingly not confine ALPN values to ASCII strings in
cpython/Lib/ssl.py
Lines 565 to 575 in 1c8b3b5
cpython/Modules/_ssl.c
Lines 2064 to 2081 in 1c8b3b5
The OpenJDK proposed to use "latin-1" encoding instead of ASCII. However, @jlaine views this workaround as a hack and suggests a more agreeable and maintainable solution aiortc/aioquic#275 (comment) .
Therefore, which is the more ideal solution, or another better fix?
The text was updated successfully, but these errors were encountered: