[1/3] update cryptography settings in StrongSwan LFS file

Message ID ef448fce-8de3-5a0a-c9db-0ea9f1b9134e@link38.eu
State Accepted
Commit 6cedc16d90cbce2d09c909d1dd79119bd161b344
Headers
Series [1/3] update cryptography settings in StrongSwan LFS file |

Commit Message

Peter Müller July 1, 2018, 1:15 a.m. UTC
  The RC2 plugin was never supported by the WebUI and is insecure,
so it became obsolete here. To support new ChaCha20/Poly1305, the
corresponding module needs to be enabled.

Signed-off-by: Peter Müller <peter.mueller@link38.eu>
---
 lfs/strongswan | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Patch

diff --git a/lfs/strongswan b/lfs/strongswan
index 58f8c5e9b..e2ecf83c7 100644
--- a/lfs/strongswan
+++ b/lfs/strongswan
@@ -92,8 +92,9 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 		--enable-eap-peap \
 		--enable-eap-mschapv2 \
 		--enable-eap-identity \
+		--enable-chapoly \
 		--disable-padlock \
-		--disable-chapoly \
+		--disable-rc2 \
 		$(CONFIGURE_OPTIONS)
 
 	cd $(DIR_APP) && make $(MAKETUNING)