summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-12-22 23:24:11 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-12 17:44:16 +0000
commit2fc8e7bae43159472b525d9ac841a66298c903fb (patch)
tree640f75a3783ad543827ce6f6f11ee442d9518b38 /meta/recipes-connectivity
parentf471317c688d8421c14b5e7daf6b6932f72c6c50 (diff)
downloadpoky-2fc8e7bae43159472b525d9ac841a66298c903fb.tar.gz
openssl: Enable rc4/rc2/bf/md4 algorithms
They are still needed by several packages in meta-openembedded (From OE-Core rev: 52af41387f1c843e7677c0bb632b2b96f9793ebd) Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Shachar Menashe <shachar@vdoo.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r--meta/recipes-connectivity/openssl/openssl_1.1.1i.bb11
1 files changed, 9 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.1i.bb b/meta/recipes-connectivity/openssl/openssl_1.1.1i.bb
index a82fd512ac..74ca11387a 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.1.1i.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.1.1i.bb
@@ -55,8 +55,15 @@ CFLAGS_append_class-native = " -DOPENSSLDIR=/not/builtin -DENGINESDIR=/not/built
55CFLAGS_append_class-nativesdk = " -DOPENSSLDIR=/not/builtin -DENGINESDIR=/not/builtin" 55CFLAGS_append_class-nativesdk = " -DOPENSSLDIR=/not/builtin -DENGINESDIR=/not/builtin"
56 56
57# Disable deprecated crypto algorithms 57# Disable deprecated crypto algorithms
58# Retained for compatibilty - des (curl), dh (python-ssl), dsa (rpm) 58# Retained for compatibilty
59DEPRECATED_CRYPTO_FLAGS = " no-ssl no-idea no-psk no-rc2 no-rc4 no-rc5 no-md2 no-md4 no-srp no-camellia no-bf no-mdc2 no-scrypt no-seed no-siphash no-sm2 no-sm3 no-sm4 no-whirlpool" 59# des (curl)
60# dh (python-ssl)
61# dsa (rpm)
62# md4 (cyrus-sasl freeradius hostapd)
63# bf (wvstreams postgresql x11vnc crda znc cfengine)
64# rc4 (freerdp librtorrent ettercap xrdp transmission pam-ssh-agent-auth php)
65# rc2 (mailx)
66DEPRECATED_CRYPTO_FLAGS = "no-ssl no-idea no-psk no-rc5 no-md2 no-srp no-camellia no-mdc2 no-scrypt no-seed no-siphash no-sm2 no-sm3 no-sm4 no-whirlpool"
60 67
61do_configure () { 68do_configure () {
62 os=${HOST_OS} 69 os=${HOST_OS}