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(-)
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)