How to get client ciphers on handshake hello after otp-24.3.4

Before opt-24.3.4.1 i did:

#sslsocket{pid=[Pid|_]} = Hs,
			{user_hello, #state{handshake_env=HandshakeEnv}} = sys:get_state(Pid),
			#handshake_env{hello=ClientHello} = HandshakeEnv,
			#client_hello{client_version=_Version, cipher_suites=CipherSuites} = ClientHello,

but hello in #handshake_env does not exists after otp -24.3.4.

Any hints?

1 Like

…by setting the option to honor the server cipher suite order and configure supported PSK ciphers to be first in the servers list.

1 Like