|
|
0c50f5 |
diff -up openssl-1.1.1k/ssl/statem/extensions.c.cleanup-reneg openssl-1.1.1k/ssl/statem/extensions.c
|
|
|
0c50f5 |
--- openssl-1.1.1k/ssl/statem/extensions.c.cleanup-reneg 2021-03-25 14:28:38.000000000 +0100
|
|
|
0c50f5 |
+++ openssl-1.1.1k/ssl/statem/extensions.c 2021-06-24 16:16:19.526181743 +0200
|
|
|
0c50f5 |
@@ -42,6 +42,7 @@ static int tls_parse_certificate_authori
|
|
|
0c50f5 |
#ifndef OPENSSL_NO_SRP
|
|
|
0c50f5 |
static int init_srp(SSL *s, unsigned int context);
|
|
|
0c50f5 |
#endif
|
|
|
0c50f5 |
+static int init_ec_point_formats(SSL *s, unsigned int context);
|
|
|
0c50f5 |
static int init_etm(SSL *s, unsigned int context);
|
|
|
0c50f5 |
static int init_ems(SSL *s, unsigned int context);
|
|
|
0c50f5 |
static int final_ems(SSL *s, unsigned int context, int sent);
|
|
|
0c50f5 |
@@ -158,7 +159,7 @@ static const EXTENSION_DEFINITION ext_de
|
|
|
0c50f5 |
TLSEXT_TYPE_ec_point_formats,
|
|
|
0c50f5 |
SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
|
|
|
0c50f5 |
| SSL_EXT_TLS1_2_AND_BELOW_ONLY,
|
|
|
0c50f5 |
- NULL, tls_parse_ctos_ec_pt_formats, tls_parse_stoc_ec_pt_formats,
|
|
|
0c50f5 |
+ init_ec_point_formats, tls_parse_ctos_ec_pt_formats, tls_parse_stoc_ec_pt_formats,
|
|
|
0c50f5 |
tls_construct_stoc_ec_pt_formats, tls_construct_ctos_ec_pt_formats,
|
|
|
0c50f5 |
final_ec_pt_formats
|
|
|
0c50f5 |
},
|
|
|
0c50f5 |
@@ -1164,6 +1165,15 @@ static int init_srp(SSL *s, unsigned int
|
|
|
0c50f5 |
}
|
|
|
0c50f5 |
#endif
|
|
|
0c50f5 |
|
|
|
0c50f5 |
+static int init_ec_point_formats(SSL *s, unsigned int context)
|
|
|
0c50f5 |
+{
|
|
|
0c50f5 |
+ OPENSSL_free(s->ext.peer_ecpointformats);
|
|
|
0c50f5 |
+ s->ext.peer_ecpointformats = NULL;
|
|
|
0c50f5 |
+ s->ext.peer_ecpointformats_len = 0;
|
|
|
0c50f5 |
+
|
|
|
0c50f5 |
+ return 1;
|
|
|
0c50f5 |
+}
|
|
|
0c50f5 |
+
|
|
|
0c50f5 |
static int init_etm(SSL *s, unsigned int context)
|
|
|
0c50f5 |
{
|
|
|
0c50f5 |
s->ext.use_etm = 0;
|