Skip to content

Commit

Permalink
chore: Use cryptography for the Provider as well. This is to have an …
Browse files Browse the repository at this point in the history
…easier time pinning the correct OpenSSL version. (#1537)

* chore: Use cryptography for the Provider as well. This is to have an easier time pinning the correct OpenSSL version.
  • Loading branch information
clundin25 authored Jun 17, 2024
1 parent 05220e0 commit cb98227
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions google/auth/transport/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,9 @@ def __init__(self, enterprise_cert_file_path):
self.signer = _custom_tls_signer.CustomTlsSigner(enterprise_cert_file_path)
self.signer.load_libraries()

if not self.signer.should_use_provider():
import urllib3.contrib.pyopenssl
import urllib3.contrib.pyopenssl

urllib3.contrib.pyopenssl.inject_into_urllib3()
urllib3.contrib.pyopenssl.inject_into_urllib3()

poolmanager = create_urllib3_context()
poolmanager.load_verify_locations(cafile=certifi.where())
Expand Down
Binary file modified system_tests/secrets.tar.enc
Binary file not shown.

0 comments on commit cb98227

Please sign in to comment.