@@ -66,7 +66,8 @@ const expectedHandshakeErr = common.hasOpenSSL(3, 2) ?
|
66 | 66 | 'ERR_SSL_SSL/TLS_ALERT_HANDSHAKE_FAILURE' : 'ERR_SSL_SSLV3_ALERT_HANDSHAKE_FAILURE'; |
67 | 67 | test({ psk: USERS.UserB, identity: 'UserC' }, {}, expectedHandshakeErr); |
68 | 68 | // Recognized user but incorrect secret should fail handshake |
69 | | -const expectedIllegalParameterErr = common.hasOpenSSL(3, 2) ? |
70 | | -'ERR_SSL_SSL/TLS_ALERT_ILLEGAL_PARAMETER' : 'ERR_SSL_SSLV3_ALERT_ILLEGAL_PARAMETER'; |
| 69 | +const expectedIllegalParameterErr = common.hasOpenSSL(3, 4) ? 'ERR_SSL_TLSV1_ALERT_DECRYPT_ERROR' : |
| 70 | +common.hasOpenSSL(3, 2) ? |
| 71 | +'ERR_SSL_SSL/TLS_ALERT_ILLEGAL_PARAMETER' : 'ERR_SSL_SSLV3_ALERT_ILLEGAL_PARAMETER'; |
71 | 72 | test({ psk: USERS.UserA, identity: 'UserB' }, {}, expectedIllegalParameterErr); |
72 | 73 | test({ psk: USERS.UserB, identity: 'UserB' }); |