From 6cf73030a9f3cc498813f251a7916b59014fee19 Mon Sep 17 00:00:00 2001 From: ZhenLian Date: Wed, 29 Apr 2020 14:48:45 -0700 Subject: [PATCH] add comments to avoid future use of hard-coded creds --- test/core/end2end/data/ssl_test_data.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/core/end2end/data/ssl_test_data.h b/test/core/end2end/data/ssl_test_data.h index 303f3a6eda3..c679ffaf131 100644 --- a/test/core/end2end/data/ssl_test_data.h +++ b/test/core/end2end/data/ssl_test_data.h @@ -19,6 +19,10 @@ #ifndef GRPC_TEST_CORE_END2END_DATA_SSL_TEST_DATA_H #define GRPC_TEST_CORE_END2END_DATA_SSL_TEST_DATA_H +// These credentials are hardcoded as char arrays and are hence considered to +// be deprecated. Please consider using credentials in +// "src/core/tsi/test_creds" instead. + extern const char test_root_cert[]; extern const char test_server1_cert[]; extern const char test_server1_key[];