Citando RFC 5246:
"Reception of a handshake_failure alert message indicates that the sender was unable to negotiate an acceptable set of security parameters given the options available. This is a fatal error."
e
The Security Parameters
These security parameters are determined by the TLS Handshake
Protocol and provided as parameters to the TLS record layer in order
to initialize a connection state. SecurityParameters includes:enum { null(0), (255) } CompressionMethod;
enum { server, client } ConnectionEnd;
enum { tls_prf_sha256 } PRFAlgorithm;
enum { null, rc4, 3des, aes } BulkCipherAlgorithm;
enum { stream, block, aead } CipherType;
enum { null, hmac_md5, hmac_sha1, hmac_sha256, hmac_sha384, hmac_sha512} MACAlgorithm;
Significa che i parametri di sicurezza = cipher suite?
Cosa potrebbe causare questo tipo di fallimento della stretta di mano? Per esempio mismatch suite di cifratura?
So che potrebbe essere una domanda di base, ma stavo faticando a trovare una spiegazione chiara.