public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] add missing check for Curve25519 in vpnmain.cgi
@ 2017-10-08 18:41 Peter Müller
  2017-10-09 13:55 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Müller @ 2017-10-08 18:41 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 917 bytes --]

This fixes bug #11501 which causes IPsec connections to crash if
Curve25519 has been enabled.

Signed-off-by: Peter Müller <peter.mueller(a)link38.eu>
---
diff --git a/html/cgi-bin/vpnmain.cgi b/html/cgi-bin/vpnmain.cgi
index f9508b53d..25551008f 100644
--- a/html/cgi-bin/vpnmain.cgi
+++ b/html/cgi-bin/vpnmain.cgi
@@ -3125,6 +3125,8 @@ sub make_algos($$$$$) {
 
 					if ($grp =~ m/^e(.*)$/) {
 						push(@algo, "ecp$1");
+					} elsif ($grp =~ m/curve25519/) {
+                                                push(@algo, "$grp");
 					} else {
 						push(@algo, "modp$grp");
 					}
@@ -3140,6 +3142,8 @@ sub make_algos($$$$$) {
 						# noop
 					} elsif ($grp =~ m/^e(.*)$/) {
 						push(@algo, "ecp$1");
+                                        } elsif ($grp =~ m/curve25519/) {
+                                                push(@algo, "$grp");
 					} else {
 						push(@algo, "modp$grp");
 					}

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-10-09 13:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-08 18:41 [PATCH] add missing check for Curve25519 in vpnmain.cgi Peter Müller
2017-10-09 13:55 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox