Home
last modified time | relevance | path

Searched defs:json_key (Results 1 – 7 of 7) sorted by relevance

/third_party/grpc/src/core/lib/security/credentials/jwt/
Djson_token.cc65 int grpc_auth_json_key_is_valid(const grpc_auth_json_key* json_key) { in grpc_auth_json_key_is_valid()
133 void grpc_auth_json_key_destruct(grpc_auth_json_key* json_key) { in grpc_auth_json_key_destruct()
166 static char* encoded_jwt_claim(const grpc_auth_json_key* json_key, in encoded_jwt_claim()
223 char* compute_and_encode_signature(const grpc_auth_json_key* json_key, in compute_and_encode_signature()
265 char* grpc_jwt_encode_and_sign(const grpc_auth_json_key* json_key, in grpc_jwt_encode_and_sign()
Djwt_credentials.cc143 static char* redact_private_key(const char* json_key) { in redact_private_key()
155 const char* json_key, gpr_timespec token_lifetime, void* reserved) { in grpc_service_account_jwt_access_credentials_create()
/third_party/grpc/test/core/security/
Djson_token_test.cc99 grpc_auth_json_key json_key = in test_parse_json_key_success() local
129 grpc_auth_json_key json_key = in test_parse_json_key_failure_bad_json() local
145 grpc_auth_json_key json_key = in test_parse_json_key_failure_no_type() local
160 grpc_auth_json_key json_key = in test_parse_json_key_failure_no_client_id() local
174 grpc_auth_json_key json_key = in test_parse_json_key_failure_no_client_email() local
189 grpc_auth_json_key json_key = in test_parse_json_key_failure_no_private_key_id() local
204 grpc_auth_json_key json_key = in test_parse_json_key_failure_no_private_key() local
334 grpc_auth_json_key json_key = in test_jwt_encode_and_sign() local
Dcredentials_test.cc1169 const grpc_auth_json_key* json_key, const char* scope, in validate_jwt_encode_and_sign_params()
1191 static char* encode_and_sign_jwt_success(const grpc_auth_json_key* json_key, in encode_and_sign_jwt_success()
1199 static char* encode_and_sign_jwt_failure(const grpc_auth_json_key* json_key, in encode_and_sign_jwt_failure()
1353 char* json_key = test_json_key_str(); in test_google_default_creds_auth_key() local
/third_party/grpc/test/cpp/interop/
Dclient_helper.cc54 static std::string json_key; in GetServiceAccountJsonKey() local
98 std::string json_key = GetServiceAccountJsonKey(); in CreateChannelForTestCase() local
Dinterop_client.cc259 bool InteropClient::DoPerRpcCreds(const std::string& json_key) { in DoPerRpcCreds()
/third_party/grpc/src/cpp/client/
Dsecure_credentials.cc323 const std::string& json_key, long token_lifetime_seconds) { in ServiceAccountJWTAccessCredentials()