// // Copyright 2020 gRPC authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include #include #include #include #include #include "absl/log/check.h" #include "src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h" namespace grpc { namespace experimental { StaticDataCertificateProvider::StaticDataCertificateProvider( const std::string& root_certificate, const std::vector& identity_key_cert_pairs) { CHECK(!root_certificate.empty() || !identity_key_cert_pairs.empty()); grpc_tls_identity_pairs* pairs_core = grpc_tls_identity_pairs_create(); for (const IdentityKeyCertPair& pair : identity_key_cert_pairs) { grpc_tls_identity_pairs_add_pair(pairs_core, pair.private_key.c_str(), pair.certificate_chain.c_str()); } c_provider_ = grpc_tls_certificate_provider_static_data_create( root_certificate.c_str(), pairs_core); CHECK_NE(c_provider_, nullptr); }; StaticDataCertificateProvider::~StaticDataCertificateProvider() { grpc_tls_certificate_provider_release(c_provider_); }; absl::Status StaticDataCertificateProvider::ValidateCredentials() const { auto* provider = grpc_core::DownCast( c_provider_); return provider->ValidateCredentials(); } FileWatcherCertificateProvider::FileWatcherCertificateProvider( const std::string& private_key_path, const std::string& identity_certificate_path, const std::string& root_cert_path, unsigned int refresh_interval_sec) { c_provider_ = grpc_tls_certificate_provider_file_watcher_create( private_key_path.c_str(), identity_certificate_path.c_str(), root_cert_path.c_str(), refresh_interval_sec); CHECK_NE(c_provider_, nullptr); }; FileWatcherCertificateProvider::~FileWatcherCertificateProvider() { grpc_tls_certificate_provider_release(c_provider_); }; absl::Status FileWatcherCertificateProvider::ValidateCredentials() const { auto* provider = grpc_core::DownCast( c_provider_); return provider->ValidateCredentials(); } } // namespace experimental } // namespace grpc