All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][dunfell][PATCH] openssl: Upgrade 1.1.1v -> 1.1.1w
@ 2023-10-06 12:32 Sourav Kumar Pramanik
  2023-10-11  7:50 ` Alexander Kanavin
  0 siblings, 1 reply; 4+ messages in thread
From: Sourav Kumar Pramanik @ 2023-10-06 12:32 UTC (permalink / raw
  To: openembedded-core, pramanik.souravkumar
  Cc: ranjitsinh.rathod, Sourav Pramanik

From: Sourav Pramanik <sourav.pramanik@kpit.com>

https://www.openssl.org/news/openssl-1.1.1-notes.html

Major changes between OpenSSL 1.1.1v and OpenSSL 1.1.1w [11 Sep 2023]

* Fix POLY1305 MAC implementation corrupting XMM registers on Windows (CVE-2023-4807)

Signed-off-by: Sourav Kumar Pramanik <pramanik.souravkumar@gmail.com>
---
 .../openssl/{openssl_1.1.1v.bb => openssl_1.1.1w.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-connectivity/openssl/{openssl_1.1.1v.bb => openssl_1.1.1w.bb} (98%)

diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.1v.bb b/meta/recipes-connectivity/openssl/openssl_1.1.1w.bb
similarity index 98%
rename from meta/recipes-connectivity/openssl/openssl_1.1.1v.bb
rename to meta/recipes-connectivity/openssl/openssl_1.1.1w.bb
index d1222dc470..8a53b06862 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.1.1v.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.1.1w.bb
@@ -26,7 +26,7 @@ SRC_URI_append_class-nativesdk = " \
            file://environment.d-openssl.sh \
            "
 
-SRC_URI[sha256sum] = "d6697e2871e77238460402e9362d47d18382b15ef9f246aba6c7bd780d38a6b0"
+SRC_URI[sha256sum] = "cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8"
 
 inherit lib_package multilib_header multilib_script ptest
 MULTILIB_SCRIPTS = "${PN}-bin:${bindir}/c_rehash"
-- 
2.25.1



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

* Re: [OE-core][dunfell][PATCH] openssl: Upgrade 1.1.1v -> 1.1.1w
  2023-10-06 12:32 [OE-core][dunfell][PATCH] openssl: Upgrade 1.1.1v -> 1.1.1w Sourav Kumar Pramanik
@ 2023-10-11  7:50 ` Alexander Kanavin
  2023-10-11  8:04   ` [dunfell][PATCH] " Ranjitsinh Rathod
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Kanavin @ 2023-10-11  7:50 UTC (permalink / raw
  To: Sourav Kumar Pramanik
  Cc: openembedded-core, ranjitsinh.rathod, Sourav Pramanik

Note that with this release, openssl 1.1.1 reaches end of life:

https://www.openssl.org/blog/blog/2023/09/11/eol-111/

Alex

On Fri, 6 Oct 2023 at 14:32, Sourav Kumar Pramanik
<pramanik.souravkumar@gmail.com> wrote:
>
> From: Sourav Pramanik <sourav.pramanik@kpit.com>
>
> https://www.openssl.org/news/openssl-1.1.1-notes.html
>
> Major changes between OpenSSL 1.1.1v and OpenSSL 1.1.1w [11 Sep 2023]
>
> * Fix POLY1305 MAC implementation corrupting XMM registers on Windows (CVE-2023-4807)
>
> Signed-off-by: Sourav Kumar Pramanik <pramanik.souravkumar@gmail.com>
> ---
>  .../openssl/{openssl_1.1.1v.bb => openssl_1.1.1w.bb}            | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-connectivity/openssl/{openssl_1.1.1v.bb => openssl_1.1.1w.bb} (98%)
>
> diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.1v.bb b/meta/recipes-connectivity/openssl/openssl_1.1.1w.bb
> similarity index 98%
> rename from meta/recipes-connectivity/openssl/openssl_1.1.1v.bb
> rename to meta/recipes-connectivity/openssl/openssl_1.1.1w.bb
> index d1222dc470..8a53b06862 100644
> --- a/meta/recipes-connectivity/openssl/openssl_1.1.1v.bb
> +++ b/meta/recipes-connectivity/openssl/openssl_1.1.1w.bb
> @@ -26,7 +26,7 @@ SRC_URI_append_class-nativesdk = " \
>             file://environment.d-openssl.sh \
>             "
>
> -SRC_URI[sha256sum] = "d6697e2871e77238460402e9362d47d18382b15ef9f246aba6c7bd780d38a6b0"
> +SRC_URI[sha256sum] = "cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8"
>
>  inherit lib_package multilib_header multilib_script ptest
>  MULTILIB_SCRIPTS = "${PN}-bin:${bindir}/c_rehash"
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#188763): https://lists.openembedded.org/g/openembedded-core/message/188763
> Mute This Topic: https://lists.openembedded.org/mt/101796386/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [dunfell][PATCH] openssl: Upgrade 1.1.1v -> 1.1.1w
  2023-10-11  7:50 ` Alexander Kanavin
@ 2023-10-11  8:04   ` Ranjitsinh Rathod
  2023-10-11  8:13     ` [OE-core] " Alexander Kanavin
  0 siblings, 1 reply; 4+ messages in thread
From: Ranjitsinh Rathod @ 2023-10-11  8:04 UTC (permalink / raw
  To: openembedded-core

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

On Wed, Oct 11, 2023 at 01:21 PM, Alexander Kanavin wrote:

> 
> Note that with this release, openssl 1.1.1 reaches end of life:

Yes, but this we can take in the dunfell, right?

[-- Attachment #2: Type: text/html, Size: 206 bytes --]

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

* Re: [OE-core] [dunfell][PATCH] openssl: Upgrade 1.1.1v -> 1.1.1w
  2023-10-11  8:04   ` [dunfell][PATCH] " Ranjitsinh Rathod
@ 2023-10-11  8:13     ` Alexander Kanavin
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Kanavin @ 2023-10-11  8:13 UTC (permalink / raw
  To: ranjitsinh.rathod; +Cc: openembedded-core

Absolutely, yes. It's a proper upstream release.
But the EOL notice with the link should be in the commit message.
Perhaps you can send a v2?

Alex

On Wed, 11 Oct 2023 at 10:04, Ranjitsinh Rathod via
lists.openembedded.org
<ranjitsinh.rathod=kpit.com@lists.openembedded.org> wrote:
>
> On Wed, Oct 11, 2023 at 01:21 PM, Alexander Kanavin wrote:
>
> Note that with this release, openssl 1.1.1 reaches end of life:
>
> Yes, but this we can take in the dunfell, right?
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#188945): https://lists.openembedded.org/g/openembedded-core/message/188945
> Mute This Topic: https://lists.openembedded.org/mt/101796386/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2023-10-11  8:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-06 12:32 [OE-core][dunfell][PATCH] openssl: Upgrade 1.1.1v -> 1.1.1w Sourav Kumar Pramanik
2023-10-11  7:50 ` Alexander Kanavin
2023-10-11  8:04   ` [dunfell][PATCH] " Ranjitsinh Rathod
2023-10-11  8:13     ` [OE-core] " Alexander Kanavin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.