diff options
author | Leo Famulari <leo@famulari.name> | 2023-02-07 21:51:15 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-02-11 23:12:51 +0100 |
commit | df163df8307ab91b14d67b074bac35464afa6bdb (patch) | |
tree | 0a628fd144f0b7f6410ee3a19fa79d7e385a6108 /gnu | |
parent | e223ab48e09613ac0e7dfbbc20674956c04f0c80 (diff) |
gnu: OpenSSL: Update to 1.1.1t [security fixes].
Fixes CVE-2023-0215, CVE-2023-0286, CVE-2022-4304, CVE-2022-4450.
https://www.openssl.org/news/secadv/20230207.txt
* gnu/packages/tls.scm (openssl/fixed): Update to 1.1.1t.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tls.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index bdac8a6e63..66c111cb56 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -618,7 +618,7 @@ OpenSSL for TARGET." (package (inherit openssl-1.1) (name "openssl") - (version "1.1.1s") + (version "1.1.1t") (source (origin (method url-fetch) (uri (list (string-append "https://www.openssl.org/source/openssl-" @@ -631,7 +631,7 @@ OpenSSL for TARGET." (patches (search-patches "openssl-1.1-c-rehash-in.patch")) (sha256 (base32 - "1amnwis6z2piqs022cpbcg828rql62yjnsqxnvdg0vzfc3kh3b65")))))) + "0fwxhlv7ary9nzg5mx07x1jj3wkbizxh56qy7l6bzp5iplj9pvld")))))) (define-public openssl-3.0 (package |