├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md └── sync-repo-settings.yaml ├── .gitignore ├── .kokoro ├── build-systests.sh ├── build.sh ├── common.cfg ├── continuous │ ├── common.cfg │ ├── continuous.cfg │ └── prerelease-deps.cfg ├── populate-secrets.sh ├── presubmit │ ├── common.cfg │ ├── prerelease-deps.cfg │ ├── presubmit.cfg │ └── system-3.10.cfg ├── samples-test-setup.sh ├── samples │ ├── lint │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.10 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.11 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.12 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.13 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.7 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.8 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ └── python3.9 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg ├── test-samples-against-head.sh ├── test-samples-impl.sh ├── test-samples.sh ├── trampoline.sh └── trampoline_v2.sh ├── .librarian ├── config.yaml └── state.yaml ├── .readthedocs.yaml ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── docs ├── _static │ └── custom.css ├── conf.py ├── index.rst ├── oauth2client-deprecation.rst ├── reference │ ├── google.auth._credentials_async.rst │ ├── google.auth._jwt_async.rst │ ├── google.auth.app_engine.rst │ ├── google.auth.aws.rst │ ├── google.auth.compute_engine.credentials.rst │ ├── google.auth.compute_engine.rst │ ├── google.auth.credentials.rst │ ├── google.auth.crypt.base.rst │ ├── google.auth.crypt.es256.rst │ ├── google.auth.crypt.rsa.rst │ ├── google.auth.crypt.rst │ ├── google.auth.downscoped.rst │ ├── google.auth.environment_vars.rst │ ├── google.auth.exceptions.rst │ ├── google.auth.external_account.rst │ ├── google.auth.iam.rst │ ├── google.auth.identity_pool.rst │ ├── google.auth.impersonated_credentials.rst │ ├── google.auth.jwt.rst │ ├── google.auth.rst │ ├── google.auth.transport._aiohttp_requests.rst │ ├── google.auth.transport.grpc.rst │ ├── google.auth.transport.mtls.rst │ ├── google.auth.transport.requests.rst │ ├── google.auth.transport.rst │ ├── google.auth.transport.urllib3.rst │ ├── google.oauth2._credentials_async.rst │ ├── google.oauth2._service_account_async.rst │ ├── google.oauth2.credentials.rst │ ├── google.oauth2.id_token.rst │ ├── google.oauth2.rst │ ├── google.oauth2.service_account.rst │ ├── google.oauth2.sts.rst │ ├── google.oauth2.utils.rst │ ├── google.rst │ └── modules.rst ├── requirements-docs.txt └── user-guide.rst ├── google ├── auth │ ├── __init__.py │ ├── _cloud_sdk.py │ ├── _constants.py │ ├── _credentials_async.py │ ├── _credentials_base.py │ ├── _default.py │ ├── _default_async.py │ ├── _exponential_backoff.py │ ├── _helpers.py │ ├── _jwt_async.py │ ├── _oauth2client.py │ ├── _refresh_worker.py │ ├── _service_account_info.py │ ├── aio │ │ ├── __init__.py │ │ ├── _helpers.py │ │ ├── credentials.py │ │ └── transport │ │ │ ├── __init__.py │ │ │ ├── aiohttp.py │ │ │ └── sessions.py │ ├── api_key.py │ ├── app_engine.py │ ├── aws.py │ ├── compute_engine │ │ ├── __init__.py │ │ ├── _metadata.py │ │ ├── _mtls.py │ │ └── credentials.py │ ├── credentials.py │ ├── crypt │ │ ├── __init__.py │ │ ├── _cryptography_rsa.py │ │ ├── _helpers.py │ │ ├── _python_rsa.py │ │ ├── base.py │ │ ├── es.py │ │ ├── es256.py │ │ └── rsa.py │ ├── downscoped.py │ ├── environment_vars.py │ ├── exceptions.py │ ├── external_account.py │ ├── external_account_authorized_user.py │ ├── iam.py │ ├── identity_pool.py │ ├── impersonated_credentials.py │ ├── jwt.py │ ├── metrics.py │ ├── pluggable.py │ ├── py.typed │ ├── transport │ │ ├── __init__.py │ │ ├── _aiohttp_requests.py │ │ ├── _custom_tls_signer.py │ │ ├── _http_client.py │ │ ├── _mtls_helper.py │ │ ├── _requests_base.py │ │ ├── grpc.py │ │ ├── mtls.py │ │ ├── requests.py │ │ └── urllib3.py │ └── version.py └── oauth2 │ ├── __init__.py │ ├── _client.py │ ├── _client_async.py │ ├── _credentials_async.py │ ├── _id_token_async.py │ ├── _reauth_async.py │ ├── _service_account_async.py │ ├── challenges.py │ ├── credentials.py │ ├── gdch_credentials.py │ ├── id_token.py │ ├── py.typed │ ├── reauth.py │ ├── service_account.py │ ├── sts.py │ ├── utils.py │ ├── webauthn_handler.py │ ├── webauthn_handler_factory.py │ └── webauthn_types.py ├── mypy.ini ├── noxfile.py ├── owlbot.py ├── renovate.json ├── samples └── cloud-client │ └── snippets │ ├── authenticate_explicit_with_adc.py │ ├── authenticate_implicit_with_adc.py │ ├── custom_aws_supplier.py │ ├── custom_okta_supplier.py │ ├── idtoken_from_impersonated_credentials.py │ ├── idtoken_from_metadata_server.py │ ├── idtoken_from_service_account.py │ ├── noxfile.py │ ├── noxfile_config.py │ ├── requirements.txt │ ├── snippets_test.py │ └── verify_google_idtoken.py ├── scripts ├── decrypt-secrets.sh ├── encrypt-secrets.sh ├── setup_external_accounts.sh └── travis.sh ├── setup.cfg ├── setup.py ├── system_tests ├── __init__.py ├── noxfile.py ├── secrets.tar.enc ├── system_tests_async │ ├── __init__.py │ ├── conftest.py │ ├── test_default.py │ ├── test_id_token.py │ └── test_service_account.py └── system_tests_sync │ ├── .gitignore │ ├── __init__.py │ ├── conftest.py │ ├── secrets.tar.enc │ ├── test_compute_engine.py │ ├── test_default.py │ ├── test_downscoping.py │ ├── test_external_accounts.py │ ├── test_grpc.py │ ├── test_id_token.py │ ├── test_impersonated_credentials.py │ ├── test_mtls_http.py │ ├── test_oauth2_credentials.py │ ├── test_requests.py │ ├── test_service_account.py │ └── test_urllib3.py ├── testing ├── constraints-3.10.txt ├── constraints-3.11.txt ├── constraints-3.12.txt ├── constraints-3.13.txt ├── constraints-3.7.txt ├── constraints-3.8.txt └── constraints-3.9.txt ├── tests ├── __init__.py ├── aio │ └── test__helpers.py ├── compute_engine │ ├── __init__.py │ ├── data │ │ ├── smbios_product_name │ │ └── smbios_product_name_non_google │ ├── test__metadata.py │ ├── test__mtls.py │ └── test_credentials.py ├── conftest.py ├── crypt │ ├── __init__.py │ ├── test__cryptography_rsa.py │ ├── test__python_rsa.py │ ├── test_crypt.py │ ├── test_es.py │ └── test_es256.py ├── data │ ├── authorized_user.json │ ├── authorized_user_cloud_sdk.json │ ├── authorized_user_cloud_sdk_with_quota_project_id.json │ ├── authorized_user_with_rapt_token.json │ ├── client_secrets.json │ ├── context_aware_metadata.json │ ├── enterprise_cert_invalid.json │ ├── enterprise_cert_valid.json │ ├── enterprise_cert_valid_provider.json │ ├── es256_privatekey.pem │ ├── es256_public_cert.pem │ ├── es256_publickey.pem │ ├── es256_service_account.json │ ├── es384_privatekey.pem │ ├── es384_public_cert.pem │ ├── es384_publickey.pem │ ├── es384_service_account.json │ ├── external_account_authorized_user.json │ ├── external_account_authorized_user_non_gdu.json │ ├── external_subject_token.json │ ├── external_subject_token.txt │ ├── gdch_service_account.json │ ├── impersonated_service_account_authorized_user_source.json │ ├── impersonated_service_account_external_account_authorized_user_source.json │ ├── impersonated_service_account_service_account_source.json │ ├── impersonated_service_account_with_quota_project.json │ ├── old_oauth_credentials_py3.pickle │ ├── other_cert.pem │ ├── pem_from_pkcs12.pem │ ├── privatekey.p12 │ ├── privatekey.pem │ ├── privatekey.pub │ ├── public_cert.pem │ ├── service_account.json │ ├── service_account_non_gdu.json │ ├── trust_chain_with_leaf.pem │ ├── trust_chain_without_leaf.pem │ └── trust_chain_wrong_order.pem ├── oauth2 │ ├── __init__.py │ ├── test__client.py │ ├── test_challenges.py │ ├── test_credentials.py │ ├── test_gdch_credentials.py │ ├── test_id_token.py │ ├── test_reauth.py │ ├── test_service_account.py │ ├── test_sts.py │ ├── test_utils.py │ ├── test_webauthn_handler.py │ ├── test_webauthn_handler_factory.py │ └── test_webauthn_types.py ├── test__cloud_sdk.py ├── test__default.py ├── test__exponential_backoff.py ├── test__helpers.py ├── test__oauth2client.py ├── test__refresh_worker.py ├── test__service_account_info.py ├── test_api_key.py ├── test_app_engine.py ├── test_aws.py ├── test_credentials.py ├── test_credentials_async.py ├── test_downscoped.py ├── test_exceptions.py ├── test_external_account.py ├── test_external_account_authorized_user.py ├── test_iam.py ├── test_identity_pool.py ├── test_impersonated_credentials.py ├── test_jwt.py ├── test_metrics.py ├── test_packaging.py ├── test_pluggable.py └── transport │ ├── __init__.py │ ├── aio │ ├── test_aiohttp.py │ └── test_sessions.py │ ├── compliance.py │ ├── test__custom_tls_signer.py │ ├── test__http_client.py │ ├── test__mtls_helper.py │ ├── test_grpc.py │ ├── test_mtls.py │ ├── test_requests.py │ └── test_urllib3.py └── tests_async ├── __init__.py ├── conftest.py ├── oauth2 ├── test__client_async.py ├── test_credentials_async.py ├── test_id_token.py ├── test_reauth_async.py └── test_service_account_async.py ├── test__default_async.py ├── test_credentials_async.py ├── test_jwt_async.py └── transport ├── __init__.py ├── async_compliance.py └── test_aiohttp_requests.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/build-systests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/build-systests.sh -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/continuous/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/presubmit/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/presubmit/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/system-3.10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/presubmit/system-3.10.cfg -------------------------------------------------------------------------------- /.kokoro/samples-test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples-test-setup.sh -------------------------------------------------------------------------------- /.kokoro/samples/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/lint/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/lint/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.10/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.10/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.10/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.10/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.10/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.11/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.11/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.11/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.12/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.12/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.12/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.12/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.12/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.13/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.13/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.13/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.13/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.13/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.7/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.7/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.7/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.7/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.7/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.8/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.8/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.8/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.8/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.8/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.9/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.9/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.9/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.9/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/samples/python3.9/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/test-samples-against-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/test-samples-against-head.sh -------------------------------------------------------------------------------- /.kokoro/test-samples-impl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/test-samples-impl.sh -------------------------------------------------------------------------------- /.kokoro/test-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/test-samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.librarian/config.yaml -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/oauth2client-deprecation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/oauth2client-deprecation.rst -------------------------------------------------------------------------------- /docs/reference/google.auth._credentials_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth._credentials_async.rst -------------------------------------------------------------------------------- /docs/reference/google.auth._jwt_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth._jwt_async.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.app_engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.app_engine.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.aws.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.aws.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.compute_engine.credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.compute_engine.credentials.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.compute_engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.compute_engine.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.credentials.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.crypt.base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.crypt.base.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.crypt.es256.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.crypt.es256.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.crypt.rsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.crypt.rsa.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.crypt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.crypt.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.downscoped.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.downscoped.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.environment_vars.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.environment_vars.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.exceptions.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.external_account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.external_account.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.iam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.iam.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.identity_pool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.identity_pool.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.impersonated_credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.impersonated_credentials.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.jwt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.jwt.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.transport._aiohttp_requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.transport._aiohttp_requests.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.transport.grpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.transport.grpc.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.transport.mtls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.transport.mtls.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.transport.requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.transport.requests.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.transport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.transport.rst -------------------------------------------------------------------------------- /docs/reference/google.auth.transport.urllib3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.auth.transport.urllib3.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2._credentials_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2._credentials_async.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2._service_account_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2._service_account_async.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2.credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2.credentials.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2.id_token.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2.id_token.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2.service_account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2.service_account.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2.sts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2.sts.rst -------------------------------------------------------------------------------- /docs/reference/google.oauth2.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.oauth2.utils.rst -------------------------------------------------------------------------------- /docs/reference/google.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/google.rst -------------------------------------------------------------------------------- /docs/reference/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/reference/modules.rst -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/requirements-docs.txt -------------------------------------------------------------------------------- /docs/user-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/docs/user-guide.rst -------------------------------------------------------------------------------- /google/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/__init__.py -------------------------------------------------------------------------------- /google/auth/_cloud_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_cloud_sdk.py -------------------------------------------------------------------------------- /google/auth/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_constants.py -------------------------------------------------------------------------------- /google/auth/_credentials_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_credentials_async.py -------------------------------------------------------------------------------- /google/auth/_credentials_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_credentials_base.py -------------------------------------------------------------------------------- /google/auth/_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_default.py -------------------------------------------------------------------------------- /google/auth/_default_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_default_async.py -------------------------------------------------------------------------------- /google/auth/_exponential_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_exponential_backoff.py -------------------------------------------------------------------------------- /google/auth/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_helpers.py -------------------------------------------------------------------------------- /google/auth/_jwt_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_jwt_async.py -------------------------------------------------------------------------------- /google/auth/_oauth2client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_oauth2client.py -------------------------------------------------------------------------------- /google/auth/_refresh_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_refresh_worker.py -------------------------------------------------------------------------------- /google/auth/_service_account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/_service_account_info.py -------------------------------------------------------------------------------- /google/auth/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aio/__init__.py -------------------------------------------------------------------------------- /google/auth/aio/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aio/_helpers.py -------------------------------------------------------------------------------- /google/auth/aio/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aio/credentials.py -------------------------------------------------------------------------------- /google/auth/aio/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aio/transport/__init__.py -------------------------------------------------------------------------------- /google/auth/aio/transport/aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aio/transport/aiohttp.py -------------------------------------------------------------------------------- /google/auth/aio/transport/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aio/transport/sessions.py -------------------------------------------------------------------------------- /google/auth/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/api_key.py -------------------------------------------------------------------------------- /google/auth/app_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/app_engine.py -------------------------------------------------------------------------------- /google/auth/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/aws.py -------------------------------------------------------------------------------- /google/auth/compute_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/compute_engine/__init__.py -------------------------------------------------------------------------------- /google/auth/compute_engine/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/compute_engine/_metadata.py -------------------------------------------------------------------------------- /google/auth/compute_engine/_mtls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/compute_engine/_mtls.py -------------------------------------------------------------------------------- /google/auth/compute_engine/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/compute_engine/credentials.py -------------------------------------------------------------------------------- /google/auth/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/credentials.py -------------------------------------------------------------------------------- /google/auth/crypt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/__init__.py -------------------------------------------------------------------------------- /google/auth/crypt/_cryptography_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/_cryptography_rsa.py -------------------------------------------------------------------------------- /google/auth/crypt/_helpers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google/auth/crypt/_python_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/_python_rsa.py -------------------------------------------------------------------------------- /google/auth/crypt/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/base.py -------------------------------------------------------------------------------- /google/auth/crypt/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/es.py -------------------------------------------------------------------------------- /google/auth/crypt/es256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/es256.py -------------------------------------------------------------------------------- /google/auth/crypt/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/crypt/rsa.py -------------------------------------------------------------------------------- /google/auth/downscoped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/downscoped.py -------------------------------------------------------------------------------- /google/auth/environment_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/environment_vars.py -------------------------------------------------------------------------------- /google/auth/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/exceptions.py -------------------------------------------------------------------------------- /google/auth/external_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/external_account.py -------------------------------------------------------------------------------- /google/auth/external_account_authorized_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/external_account_authorized_user.py -------------------------------------------------------------------------------- /google/auth/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/iam.py -------------------------------------------------------------------------------- /google/auth/identity_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/identity_pool.py -------------------------------------------------------------------------------- /google/auth/impersonated_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/impersonated_credentials.py -------------------------------------------------------------------------------- /google/auth/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/jwt.py -------------------------------------------------------------------------------- /google/auth/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/metrics.py -------------------------------------------------------------------------------- /google/auth/pluggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/pluggable.py -------------------------------------------------------------------------------- /google/auth/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-auth package uses inline types. 3 | -------------------------------------------------------------------------------- /google/auth/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/__init__.py -------------------------------------------------------------------------------- /google/auth/transport/_aiohttp_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/_aiohttp_requests.py -------------------------------------------------------------------------------- /google/auth/transport/_custom_tls_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/_custom_tls_signer.py -------------------------------------------------------------------------------- /google/auth/transport/_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/_http_client.py -------------------------------------------------------------------------------- /google/auth/transport/_mtls_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/_mtls_helper.py -------------------------------------------------------------------------------- /google/auth/transport/_requests_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/_requests_base.py -------------------------------------------------------------------------------- /google/auth/transport/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/grpc.py -------------------------------------------------------------------------------- /google/auth/transport/mtls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/mtls.py -------------------------------------------------------------------------------- /google/auth/transport/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/requests.py -------------------------------------------------------------------------------- /google/auth/transport/urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/transport/urllib3.py -------------------------------------------------------------------------------- /google/auth/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/auth/version.py -------------------------------------------------------------------------------- /google/oauth2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/__init__.py -------------------------------------------------------------------------------- /google/oauth2/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/_client.py -------------------------------------------------------------------------------- /google/oauth2/_client_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/_client_async.py -------------------------------------------------------------------------------- /google/oauth2/_credentials_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/_credentials_async.py -------------------------------------------------------------------------------- /google/oauth2/_id_token_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/_id_token_async.py -------------------------------------------------------------------------------- /google/oauth2/_reauth_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/_reauth_async.py -------------------------------------------------------------------------------- /google/oauth2/_service_account_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/_service_account_async.py -------------------------------------------------------------------------------- /google/oauth2/challenges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/challenges.py -------------------------------------------------------------------------------- /google/oauth2/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/credentials.py -------------------------------------------------------------------------------- /google/oauth2/gdch_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/gdch_credentials.py -------------------------------------------------------------------------------- /google/oauth2/id_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/id_token.py -------------------------------------------------------------------------------- /google/oauth2/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-oauth2 package uses inline types. 3 | -------------------------------------------------------------------------------- /google/oauth2/reauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/reauth.py -------------------------------------------------------------------------------- /google/oauth2/service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/service_account.py -------------------------------------------------------------------------------- /google/oauth2/sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/sts.py -------------------------------------------------------------------------------- /google/oauth2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/utils.py -------------------------------------------------------------------------------- /google/oauth2/webauthn_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/webauthn_handler.py -------------------------------------------------------------------------------- /google/oauth2/webauthn_handler_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/webauthn_handler_factory.py -------------------------------------------------------------------------------- /google/oauth2/webauthn_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/google/oauth2/webauthn_types.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/noxfile.py -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/owlbot.py -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/cloud-client/snippets/authenticate_explicit_with_adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/authenticate_explicit_with_adc.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/authenticate_implicit_with_adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/authenticate_implicit_with_adc.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/custom_aws_supplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/custom_aws_supplier.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/custom_okta_supplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/custom_okta_supplier.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/idtoken_from_impersonated_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/idtoken_from_impersonated_credentials.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/idtoken_from_metadata_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/idtoken_from_metadata_server.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/idtoken_from_service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/idtoken_from_service_account.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/noxfile.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/noxfile_config.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/requirements.txt -------------------------------------------------------------------------------- /samples/cloud-client/snippets/snippets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/snippets_test.py -------------------------------------------------------------------------------- /samples/cloud-client/snippets/verify_google_idtoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/samples/cloud-client/snippets/verify_google_idtoken.py -------------------------------------------------------------------------------- /scripts/decrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/scripts/decrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/encrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/scripts/encrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/setup_external_accounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/scripts/setup_external_accounts.sh -------------------------------------------------------------------------------- /scripts/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/scripts/travis.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/setup.py -------------------------------------------------------------------------------- /system_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_tests/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/noxfile.py -------------------------------------------------------------------------------- /system_tests/secrets.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/secrets.tar.enc -------------------------------------------------------------------------------- /system_tests/system_tests_async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_tests/system_tests_async/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_async/conftest.py -------------------------------------------------------------------------------- /system_tests/system_tests_async/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_async/test_default.py -------------------------------------------------------------------------------- /system_tests/system_tests_async/test_id_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_async/test_id_token.py -------------------------------------------------------------------------------- /system_tests/system_tests_async/test_service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_async/test_service_account.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | secrets.tar -------------------------------------------------------------------------------- /system_tests/system_tests_sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_tests/system_tests_sync/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/conftest.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/secrets.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/secrets.tar.enc -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_compute_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_compute_engine.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_default.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_downscoping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_downscoping.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_external_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_external_accounts.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_grpc.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_id_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_id_token.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_impersonated_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_impersonated_credentials.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_mtls_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_mtls_http.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_oauth2_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_oauth2_credentials.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_requests.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_service_account.py -------------------------------------------------------------------------------- /system_tests/system_tests_sync/test_urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/system_tests/system_tests_sync/test_urllib3.py -------------------------------------------------------------------------------- /testing/constraints-3.10.txt: -------------------------------------------------------------------------------- 1 | urllib3<2.0.0 -------------------------------------------------------------------------------- /testing/constraints-3.11.txt: -------------------------------------------------------------------------------- 1 | urllib3>2.0.0 -------------------------------------------------------------------------------- /testing/constraints-3.12.txt: -------------------------------------------------------------------------------- 1 | urllib3>2.0.0 -------------------------------------------------------------------------------- /testing/constraints-3.13.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /testing/constraints-3.8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.9.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aio/test__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/aio/test__helpers.py -------------------------------------------------------------------------------- /tests/compute_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compute_engine/data/smbios_product_name: -------------------------------------------------------------------------------- 1 | Google Compute Engine 2 | -------------------------------------------------------------------------------- /tests/compute_engine/data/smbios_product_name_non_google: -------------------------------------------------------------------------------- 1 | ABC Compute Engine 2 | -------------------------------------------------------------------------------- /tests/compute_engine/test__metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/compute_engine/test__metadata.py -------------------------------------------------------------------------------- /tests/compute_engine/test__mtls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/compute_engine/test__mtls.py -------------------------------------------------------------------------------- /tests/compute_engine/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/compute_engine/test_credentials.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/crypt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/crypt/test__cryptography_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/crypt/test__cryptography_rsa.py -------------------------------------------------------------------------------- /tests/crypt/test__python_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/crypt/test__python_rsa.py -------------------------------------------------------------------------------- /tests/crypt/test_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/crypt/test_crypt.py -------------------------------------------------------------------------------- /tests/crypt/test_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/crypt/test_es.py -------------------------------------------------------------------------------- /tests/crypt/test_es256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/crypt/test_es256.py -------------------------------------------------------------------------------- /tests/data/authorized_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/authorized_user.json -------------------------------------------------------------------------------- /tests/data/authorized_user_cloud_sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/authorized_user_cloud_sdk.json -------------------------------------------------------------------------------- /tests/data/authorized_user_cloud_sdk_with_quota_project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/authorized_user_cloud_sdk_with_quota_project_id.json -------------------------------------------------------------------------------- /tests/data/authorized_user_with_rapt_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/authorized_user_with_rapt_token.json -------------------------------------------------------------------------------- /tests/data/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/client_secrets.json -------------------------------------------------------------------------------- /tests/data/context_aware_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/context_aware_metadata.json -------------------------------------------------------------------------------- /tests/data/enterprise_cert_invalid.json: -------------------------------------------------------------------------------- 1 | { 2 | "libs": {} 3 | } -------------------------------------------------------------------------------- /tests/data/enterprise_cert_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/enterprise_cert_valid.json -------------------------------------------------------------------------------- /tests/data/enterprise_cert_valid_provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/enterprise_cert_valid_provider.json -------------------------------------------------------------------------------- /tests/data/es256_privatekey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es256_privatekey.pem -------------------------------------------------------------------------------- /tests/data/es256_public_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es256_public_cert.pem -------------------------------------------------------------------------------- /tests/data/es256_publickey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es256_publickey.pem -------------------------------------------------------------------------------- /tests/data/es256_service_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es256_service_account.json -------------------------------------------------------------------------------- /tests/data/es384_privatekey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es384_privatekey.pem -------------------------------------------------------------------------------- /tests/data/es384_public_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es384_public_cert.pem -------------------------------------------------------------------------------- /tests/data/es384_publickey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es384_publickey.pem -------------------------------------------------------------------------------- /tests/data/es384_service_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/es384_service_account.json -------------------------------------------------------------------------------- /tests/data/external_account_authorized_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/external_account_authorized_user.json -------------------------------------------------------------------------------- /tests/data/external_account_authorized_user_non_gdu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/external_account_authorized_user_non_gdu.json -------------------------------------------------------------------------------- /tests/data/external_subject_token.json: -------------------------------------------------------------------------------- 1 | { 2 | "access_token": "HEADER.SIMULATED_JWT_PAYLOAD.SIGNATURE" 3 | } -------------------------------------------------------------------------------- /tests/data/external_subject_token.txt: -------------------------------------------------------------------------------- 1 | HEADER.SIMULATED_JWT_PAYLOAD.SIGNATURE -------------------------------------------------------------------------------- /tests/data/gdch_service_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/gdch_service_account.json -------------------------------------------------------------------------------- /tests/data/impersonated_service_account_authorized_user_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/impersonated_service_account_authorized_user_source.json -------------------------------------------------------------------------------- /tests/data/impersonated_service_account_external_account_authorized_user_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/impersonated_service_account_external_account_authorized_user_source.json -------------------------------------------------------------------------------- /tests/data/impersonated_service_account_service_account_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/impersonated_service_account_service_account_source.json -------------------------------------------------------------------------------- /tests/data/impersonated_service_account_with_quota_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/impersonated_service_account_with_quota_project.json -------------------------------------------------------------------------------- /tests/data/old_oauth_credentials_py3.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/old_oauth_credentials_py3.pickle -------------------------------------------------------------------------------- /tests/data/other_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/other_cert.pem -------------------------------------------------------------------------------- /tests/data/pem_from_pkcs12.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/pem_from_pkcs12.pem -------------------------------------------------------------------------------- /tests/data/privatekey.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/privatekey.p12 -------------------------------------------------------------------------------- /tests/data/privatekey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/privatekey.pem -------------------------------------------------------------------------------- /tests/data/privatekey.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/privatekey.pub -------------------------------------------------------------------------------- /tests/data/public_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/public_cert.pem -------------------------------------------------------------------------------- /tests/data/service_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/service_account.json -------------------------------------------------------------------------------- /tests/data/service_account_non_gdu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/service_account_non_gdu.json -------------------------------------------------------------------------------- /tests/data/trust_chain_with_leaf.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/trust_chain_with_leaf.pem -------------------------------------------------------------------------------- /tests/data/trust_chain_without_leaf.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/trust_chain_without_leaf.pem -------------------------------------------------------------------------------- /tests/data/trust_chain_wrong_order.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/data/trust_chain_wrong_order.pem -------------------------------------------------------------------------------- /tests/oauth2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/oauth2/test__client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test__client.py -------------------------------------------------------------------------------- /tests/oauth2/test_challenges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_challenges.py -------------------------------------------------------------------------------- /tests/oauth2/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_credentials.py -------------------------------------------------------------------------------- /tests/oauth2/test_gdch_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_gdch_credentials.py -------------------------------------------------------------------------------- /tests/oauth2/test_id_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_id_token.py -------------------------------------------------------------------------------- /tests/oauth2/test_reauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_reauth.py -------------------------------------------------------------------------------- /tests/oauth2/test_service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_service_account.py -------------------------------------------------------------------------------- /tests/oauth2/test_sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_sts.py -------------------------------------------------------------------------------- /tests/oauth2/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_utils.py -------------------------------------------------------------------------------- /tests/oauth2/test_webauthn_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_webauthn_handler.py -------------------------------------------------------------------------------- /tests/oauth2/test_webauthn_handler_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_webauthn_handler_factory.py -------------------------------------------------------------------------------- /tests/oauth2/test_webauthn_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/oauth2/test_webauthn_types.py -------------------------------------------------------------------------------- /tests/test__cloud_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__cloud_sdk.py -------------------------------------------------------------------------------- /tests/test__default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__default.py -------------------------------------------------------------------------------- /tests/test__exponential_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__exponential_backoff.py -------------------------------------------------------------------------------- /tests/test__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__helpers.py -------------------------------------------------------------------------------- /tests/test__oauth2client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__oauth2client.py -------------------------------------------------------------------------------- /tests/test__refresh_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__refresh_worker.py -------------------------------------------------------------------------------- /tests/test__service_account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test__service_account_info.py -------------------------------------------------------------------------------- /tests/test_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_api_key.py -------------------------------------------------------------------------------- /tests/test_app_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_app_engine.py -------------------------------------------------------------------------------- /tests/test_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_aws.py -------------------------------------------------------------------------------- /tests/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_credentials.py -------------------------------------------------------------------------------- /tests/test_credentials_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_credentials_async.py -------------------------------------------------------------------------------- /tests/test_downscoped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_downscoped.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_external_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_external_account.py -------------------------------------------------------------------------------- /tests/test_external_account_authorized_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_external_account_authorized_user.py -------------------------------------------------------------------------------- /tests/test_iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_iam.py -------------------------------------------------------------------------------- /tests/test_identity_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_identity_pool.py -------------------------------------------------------------------------------- /tests/test_impersonated_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_impersonated_credentials.py -------------------------------------------------------------------------------- /tests/test_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_jwt.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_packaging.py -------------------------------------------------------------------------------- /tests/test_pluggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/test_pluggable.py -------------------------------------------------------------------------------- /tests/transport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transport/aio/test_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/aio/test_aiohttp.py -------------------------------------------------------------------------------- /tests/transport/aio/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/aio/test_sessions.py -------------------------------------------------------------------------------- /tests/transport/compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/compliance.py -------------------------------------------------------------------------------- /tests/transport/test__custom_tls_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test__custom_tls_signer.py -------------------------------------------------------------------------------- /tests/transport/test__http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test__http_client.py -------------------------------------------------------------------------------- /tests/transport/test__mtls_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test__mtls_helper.py -------------------------------------------------------------------------------- /tests/transport/test_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test_grpc.py -------------------------------------------------------------------------------- /tests/transport/test_mtls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test_mtls.py -------------------------------------------------------------------------------- /tests/transport/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test_requests.py -------------------------------------------------------------------------------- /tests/transport/test_urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests/transport/test_urllib3.py -------------------------------------------------------------------------------- /tests_async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_async/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/conftest.py -------------------------------------------------------------------------------- /tests_async/oauth2/test__client_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/oauth2/test__client_async.py -------------------------------------------------------------------------------- /tests_async/oauth2/test_credentials_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/oauth2/test_credentials_async.py -------------------------------------------------------------------------------- /tests_async/oauth2/test_id_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/oauth2/test_id_token.py -------------------------------------------------------------------------------- /tests_async/oauth2/test_reauth_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/oauth2/test_reauth_async.py -------------------------------------------------------------------------------- /tests_async/oauth2/test_service_account_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/oauth2/test_service_account_async.py -------------------------------------------------------------------------------- /tests_async/test__default_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/test__default_async.py -------------------------------------------------------------------------------- /tests_async/test_credentials_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/test_credentials_async.py -------------------------------------------------------------------------------- /tests_async/test_jwt_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/test_jwt_async.py -------------------------------------------------------------------------------- /tests_async/transport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_async/transport/async_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/transport/async_compliance.py -------------------------------------------------------------------------------- /tests_async/transport/test_aiohttp_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-python/HEAD/tests_async/transport/test_aiohttp_requests.py --------------------------------------------------------------------------------