Home
last modified time | relevance | path

Searched refs:tsi_pairs (Results 1 – 2 of 2) 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/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()