Home
last modified time | relevance | path

Searched refs:tsi_pairs (Results 1 – 5 of 5) sorted by relevance

/external/grpc-grpc/test/core/security/
Dssl_credentials_test.cc37 tsi_ssl_pem_key_cert_pair* tsi_pairs = in test_convert_grpc_to_tsi_cert_pairs() local
39 GPR_ASSERT(tsi_pairs == nullptr); in test_convert_grpc_to_tsi_cert_pairs()
43 tsi_ssl_pem_key_cert_pair* tsi_pairs = in test_convert_grpc_to_tsi_cert_pairs() local
46 GPR_ASSERT(tsi_pairs != nullptr); in test_convert_grpc_to_tsi_cert_pairs()
48 GPR_ASSERT(strncmp(grpc_pairs[i].private_key, tsi_pairs[i].private_key, in test_convert_grpc_to_tsi_cert_pairs()
50 GPR_ASSERT(strncmp(grpc_pairs[i].cert_chain, tsi_pairs[i].cert_chain, in test_convert_grpc_to_tsi_cert_pairs()
54 grpc_tsi_ssl_pem_key_cert_pairs_destroy(tsi_pairs, num_pairs); in test_convert_grpc_to_tsi_cert_pairs()
/external/rust/crates/grpcio-sys/grpc/test/core/security/
Dssl_credentials_test.cc37 tsi_ssl_pem_key_cert_pair* tsi_pairs = in test_convert_grpc_to_tsi_cert_pairs() local
39 GPR_ASSERT(tsi_pairs == nullptr); in test_convert_grpc_to_tsi_cert_pairs()
43 tsi_ssl_pem_key_cert_pair* tsi_pairs = in test_convert_grpc_to_tsi_cert_pairs() local
46 GPR_ASSERT(tsi_pairs != nullptr); in test_convert_grpc_to_tsi_cert_pairs()
48 GPR_ASSERT(strncmp(grpc_pairs[i].private_key, tsi_pairs[i].private_key, in test_convert_grpc_to_tsi_cert_pairs()
50 GPR_ASSERT(strncmp(grpc_pairs[i].cert_chain, tsi_pairs[i].cert_chain, in test_convert_grpc_to_tsi_cert_pairs()
54 grpc_tsi_ssl_pem_key_cert_pairs_destroy(tsi_pairs, num_pairs); in test_convert_grpc_to_tsi_cert_pairs()
/external/grpc-grpc/src/core/lib/security/credentials/ssl/
Dssl_credentials.cc167 tsi_ssl_pem_key_cert_pair* tsi_pairs = nullptr; in grpc_convert_grpc_to_tsi_cert_pairs() local
170 tsi_pairs = static_cast<tsi_ssl_pem_key_cert_pair*>( in grpc_convert_grpc_to_tsi_cert_pairs()
176 tsi_pairs[i].cert_chain = gpr_strdup(pem_key_cert_pairs[i].cert_chain); in grpc_convert_grpc_to_tsi_cert_pairs()
177 tsi_pairs[i].private_key = gpr_strdup(pem_key_cert_pairs[i].private_key); in grpc_convert_grpc_to_tsi_cert_pairs()
179 return tsi_pairs; in grpc_convert_grpc_to_tsi_cert_pairs()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/ssl/
Dssl_credentials.cc200 tsi_ssl_pem_key_cert_pair* tsi_pairs = nullptr; in grpc_convert_grpc_to_tsi_cert_pairs() local
203 tsi_pairs = static_cast<tsi_ssl_pem_key_cert_pair*>( in grpc_convert_grpc_to_tsi_cert_pairs()
209 tsi_pairs[i].cert_chain = gpr_strdup(pem_key_cert_pairs[i].cert_chain); in grpc_convert_grpc_to_tsi_cert_pairs()
210 tsi_pairs[i].private_key = gpr_strdup(pem_key_cert_pairs[i].private_key); in grpc_convert_grpc_to_tsi_cert_pairs()
212 return tsi_pairs; in grpc_convert_grpc_to_tsi_cert_pairs()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/security_connector/tls/
Dtls_security_connector.cc50 tsi_ssl_pem_key_cert_pair* tsi_pairs = nullptr; in ConvertToTsiPemKeyCertPair() local
54 tsi_pairs = static_cast<tsi_ssl_pem_key_cert_pair*>( in ConvertToTsiPemKeyCertPair()
60 tsi_pairs[i].cert_chain = in ConvertToTsiPemKeyCertPair()
62 tsi_pairs[i].private_key = in ConvertToTsiPemKeyCertPair()
65 return tsi_pairs; in ConvertToTsiPemKeyCertPair()