Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openssl 1.1.1o #922

Merged
merged 3 commits into from
Jul 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/third_party/curl/curl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ int main(int argc, char* argv[])
curl_version_info_data* data = curl_version_info(CURLVERSION_NOW);

assertm(std::string(data->version) == std::string("7.74.0"), "The version of curl does not match the expected version");
assertm(std::string(data->ssl_version) == std::string("OpenSSL/1.1.1k"), "The version of openssl does not match the expected version");
assertm(std::string(data->ssl_version) == std::string("OpenSSL/1.1.1o"), "The version of openssl does not match the expected version");

return 0;
}
10 changes: 5 additions & 5 deletions examples/third_party/openssl/openssl_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ def openssl_repositories():
http_archive,
name = "openssl",
build_file = Label("//openssl:BUILD.openssl.bazel"),
sha256 = "892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5",
strip_prefix = "openssl-1.1.1k",
sha256 = "0f745b85519aab2ce444a3dcada93311ba926aea2899596d01e7f948dbd99981",
strip_prefix = "openssl-OpenSSL_1_1_1o",
urls = [
"https://mirror.bazel.build/www.openssl.org/source/openssl-1.1.1k.tar.gz",
"https://www.openssl.org/source/openssl-1.1.1k.tar.gz",
"https://github.com/openssl/openssl/archive/OpenSSL_1_1_1k.tar.gz",
"https://mirror.bazel.build/www.openssl.org/source/openssl-1.1.1o.tar.gz",
"https://www.openssl.org/source/openssl-1.1.1o.tar.gz",
"https://github.com/openssl/openssl/archive/OpenSSL_1_1_1o.tar.gz",
],
)

Expand Down