diff options
author | Steve Dower <steve.dower@python.org> | 2023-02-09 19:28:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 19:28:59 (GMT) |
commit | 52a03a000628f1882e39e8ed82bd8d703084f6e8 (patch) | |
tree | a2f42ae04604bf7a15ff4ec8796992372b332479 /Mac/BuildScript/build-installer.py | |
parent | 4a9dff0e5adc91cbb1ed68c495dac64ccfe608bd (diff) | |
download | cpython-52a03a000628f1882e39e8ed82bd8d703084f6e8.zip cpython-52a03a000628f1882e39e8ed82bd8d703084f6e8.tar.gz cpython-52a03a000628f1882e39e8ed82bd8d703084f6e8.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
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-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 f756a99..9108986 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, |