aboutsummaryrefslogtreecommitdiff
path: root/services/src/main/proto/io/grpc/channelz.proto
diff options
context:
space:
mode:
Diffstat (limited to 'services/src/main/proto/io/grpc/channelz.proto')
-rw-r--r--services/src/main/proto/io/grpc/channelz.proto12
1 files changed, 8 insertions, 4 deletions
diff --git a/services/src/main/proto/io/grpc/channelz.proto b/services/src/main/proto/io/grpc/channelz.proto
index 0f5db2296..c107cb4ab 100644
--- a/services/src/main/proto/io/grpc/channelz.proto
+++ b/services/src/main/proto/io/grpc/channelz.proto
@@ -238,10 +238,14 @@ message Address {
message Security {
message Tls {
- // The key exchange used. e.g. X25519
- string key_exchange = 1;
- // The cipher used. e.g. AES_128_GCM.
- string cipher = 2;
+ oneof cipher_suite {
+ // The cipher suite name in the RFC 4346 format:
+ // https://tools.ietf.org/html/rfc4346#appendix-C
+ string standard_name = 1;
+ // Some other way to describe the cipher suite if
+ // the RFC 4346 name is not available.
+ string other_name = 2;
+ }
// the certificate used by this endpoint.
bytes local_certificate = 3;
// the certificate used by the remote endpoint.