1. Send SCSV is not renegotiating, never empty RI.
2. Send RI if renegotiating.
p+=j;
}
/* If p == q, no ciphers and caller indicates an error. Otherwise
- * add SCSV if no extensions (i.e. SSL3 is client_version)
- * since spec RECOMMENDS not sending both RI and SCSV.
+ * add SCSV if not renegotiating.
*/
- if (p != q && !s->new_session && s->client_version == SSL3_VERSION)
+ if (p != q && !s->new_session)
{
static SSL_CIPHER scsv =
{
ret+=size_str;
}
- /* Add the renegotiation option: TODOEKR switch */
- {
+ /* Add RI if renegotiating */
+ if (s->new_session)
+ {
int el;
if(!ssl_add_clienthello_renegotiate_ext(s, 0, &el, 0))