summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2024-02-04 18:25:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-02-05 14:06:09 +0000
commit670bc40b695dcafc14832ccb318044d08e832aac (patch)
treef1496d567c5d8646bd7433deb43587d8ae02bc0d /meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch
parent34abe0219f19fe261878a54e27c9896ae31a67ab (diff)
downloadpoky-670bc40b695dcafc14832ccb318044d08e832aac.tar.gz
openssl: Upgrade 3.2.0 -> 3.2.1
Fixes CVE-2024-0727 and CVE-2023-6237 Removed included patch backports. New module was implemented in tests and needs to be installed to successfully pass 04-test_provider.t test. Release information: https://github.com/openssl/openssl/blob/openssl-3.2/NEWS.md#major-changes-between-openssl-320-and-openssl-321-30-jan-2024 (From OE-Core rev: b50f1c4ccac12e9dbdeb5a6fec0413c9cd901d88) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch b/meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch
deleted file mode 100644
index 1d217bd8e3..0000000000
--- a/meta/recipes-connectivity/openssl/openssl/0001-riscv-Fix-mispelling-of-extension-test-macro.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From b51031b05f72923ff1cf3b6a4767450dee89d7f4 Mon Sep 17 00:00:00 2001
2From: Grant Nichol <me@grantnichol.com>
3Date: Fri, 22 Dec 2023 23:46:39 -0600
4Subject: [PATCH] riscv: Fix mispelling of extension test macro
5
6When refactoring the riscv extension test macros,
7RISCV_HAS_ZKND_AND_ZKNE was mispelled.
8
9CLA: trivial
10Upstream-Status: Backport [https://github.com/openssl/openssl/pull/23139]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 providers/implementations/ciphers/cipher_aes_xts_hw.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/providers/implementations/ciphers/cipher_aes_xts_hw.c b/providers/implementations/ciphers/cipher_aes_xts_hw.c
17index 564d6d6..4cf1361 100644
18--- a/providers/implementations/ciphers/cipher_aes_xts_hw.c
19+++ b/providers/implementations/ciphers/cipher_aes_xts_hw.c
20@@ -225,7 +225,7 @@ static const PROV_CIPHER_HW aes_xts_rv32i_zbkb_zknd_zkne = { \
21 # define PROV_CIPHER_HW_select_xts() \
22 if (RISCV_HAS_ZBKB_AND_ZKND_AND_ZKNE()) \
23 return &aes_xts_rv32i_zbkb_zknd_zkne; \
24-if (RISCV_HAS_ZKND_ZKNE()) \
25+if (RISCV_HAS_ZKND_AND_ZKNE()) \
26 return &aes_xts_rv32i_zknd_zkne;
27 # else
28 /* The generic case */
29--
302.43.0
31