diff options
author | Gregory P. Smith <greg@krypto.org> | 2023-02-09 17:40:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 17:40:51 (GMT) |
commit | b41c47cd0606e8273aef4813e83fe2deaf9ab33b (patch) | |
tree | 7d62b88e7d1b88e49ade3d9735c70652babb6ac5 /Mac | |
parent | 6d92373f500eb81a175516b3abb16e21f0806c1f (diff) | |
download | cpython-b41c47cd0606e8273aef4813e83fe2deaf9ab33b.zip cpython-b41c47cd0606e8273aef4813e83fe2deaf9ab33b.tar.gz cpython-b41c47cd0606e8273aef4813e83fe2deaf9ab33b.tar.bz2 |
gh-101726: Update the OpenSSL version to 1.1.1t (GH-101727)
Fixes CVE-2023-0286 (High) and a couple of Medium security issues.
https://www.openssl.org/news/secadv/20230207.txt
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index cf97b55..048cb01 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -246,9 +246,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.1.1s", - url="https://www.openssl.org/source/openssl-1.1.1s.tar.gz", - checksum='c5ac01e760ee6ff0dab61d6b2bbd30146724d063eb322180c6f18a6f74e4b6aa', + name="OpenSSL 1.1.1t", + url="https://www.openssl.org/source/openssl-1.1.1t.tar.gz", + checksum='8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b', buildrecipe=build_universal_openssl, configure=None, install=None, |