diff options
author | tdbhacks <aburaggina@google.com> | 2018-07-20 16:41:44 -0700 |
---|---|---|
committer | tdbhacks <aburaggina@google.com> | 2018-08-09 11:01:31 -0700 |
commit | bcd747d42d11c92c3d37aef8d8b45a043ff5d79c (patch) | |
tree | 46229383a1c2821d91edf06bfe5843dd45bbb4ba /src/python/grpcio | |
parent | cb87dd9fef97d1e1fb2559be68188c0792a3ecd8 (diff) |
Added system roots feature to load roots from OS trust store
Added a flag-guarded feature that allows gRPC to load TLS/SSL
roots from the OS trust store. This is the Linux-specific
implementation of such feature.
Diffstat (limited to 'src/python/grpcio')
-rw-r--r-- | src/python/grpcio/grpc_core_dependencies.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/python/grpcio/grpc_core_dependencies.py b/src/python/grpcio/grpc_core_dependencies.py index d6efb49750..a8158311fb 100644 --- a/src/python/grpcio/grpc_core_dependencies.py +++ b/src/python/grpcio/grpc_core_dependencies.py @@ -254,6 +254,8 @@ CORE_SOURCE_FILES = [ 'src/core/lib/security/credentials/plugin/plugin_credentials.cc', 'src/core/lib/security/credentials/ssl/ssl_credentials.cc', 'src/core/lib/security/security_connector/alts_security_connector.cc', + 'src/core/lib/security/security_connector/load_system_roots_fallback.cc', + 'src/core/lib/security/security_connector/load_system_roots_linux.cc', 'src/core/lib/security/security_connector/local_security_connector.cc', 'src/core/lib/security/security_connector/security_connector.cc', 'src/core/lib/security/transport/client_auth_filter.cc', |