We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The ptls_context_t key_exchanges can be set to NULL to force PSK-only mode.
ptls_context_t
key_exchanges
In this scenario, the client key_share_ctx is NULL, so encode_client_hello does not include any key_share entries.
key_share_ctx
NULL
encode_client_hello
So far so good. But encode_client_hello still includes PSK_DHE in the PSK_KEY_EXCHANGE_MODES, even though that mode won't be able to work.
In practice this hasn't caused any issues for me, but it would probably be good to exclude that mode in this scenario.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
ptls_context_t
key_exchanges
can be set to NULL to force PSK-only mode.In this scenario, the client
key_share_ctx
isNULL
, soencode_client_hello
does not include any key_share entries.So far so good. But
encode_client_hello
still includes PSK_DHE in the PSK_KEY_EXCHANGE_MODES, even though that mode won't be able to work.In practice this hasn't caused any issues for me, but it would probably be good to exclude that mode in this scenario.
The text was updated successfully, but these errors were encountered: