Updated version of openssl (#737)

This commit is contained in:
UebelAndre 2021-07-28 08:46:08 -07:00 committed by GitHub
parent 5163c3cec8
commit bf6d54c470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -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.1h"), "The version of openssl 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");
return 0;
}

View File

@ -8,11 +8,11 @@ def openssl_repositories():
http_archive,
name = "openssl",
build_file = Label("//openssl:BUILD.openssl.bazel"),
sha256 = "5c9ca8774bd7b03e5784f26ae9e9e6d749c9da2438545077e6b3d755a06595d9",
strip_prefix = "openssl-1.1.1h",
sha256 = "892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5",
strip_prefix = "openssl-1.1.1k",
urls = [
"https://www.openssl.org/source/openssl-1.1.1h.tar.gz",
"https://github.com/openssl/openssl/archive/OpenSSL_1_1_1h.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",
],
)