diff --git a/htdocs/luci-static/resources/view/homeproxy/node.js b/htdocs/luci-static/resources/view/homeproxy/node.js index 35b569d..a77684e 100644 --- a/htdocs/luci-static/resources/view/homeproxy/node.js +++ b/htdocs/luci-static/resources/view/homeproxy/node.js @@ -1091,10 +1091,6 @@ function renderNodeSettings(section, data, features, main_node, routing_mode) { o.depends('tls', '1'); o.modalonly = true; - o = s.option(form.Flag, 'tls_ech_enable_pqss', _('Enable PQ signature schemes')); - o.depends('tls_ech', '1'); - o.modalonly = true; - o = s.option(form.Value, 'tls_ech_config_path', _('ECH config path'), _('The path to the ECH config, in PEM format. If empty, load from DNS will be attempted.')); o.value('/etc/homeproxy/certs/client_ech_conf.pem'); diff --git a/root/etc/homeproxy/scripts/generate_client.uc b/root/etc/homeproxy/scripts/generate_client.uc index 68fe43f..26ada37 100755 --- a/root/etc/homeproxy/scripts/generate_client.uc +++ b/root/etc/homeproxy/scripts/generate_client.uc @@ -301,7 +301,6 @@ function generate_outbound(node) { certificate_path: node.tls_cert_path, ech: (node.tls_ech === '1') ? { enabled: true, - pq_signature_schemes_enabled: strToBool(node.tls_ech_enable_pqss), config: node.tls_ech_config, config_path: node.tls_ech_config_path } : null,