diff options
author | Julien Boeuf <jboeuf@google.com> | 2015-02-24 20:54:12 -0800 |
---|---|---|
committer | Julien Boeuf <jboeuf@google.com> | 2015-02-24 20:54:12 -0800 |
commit | d43f0c371387d2f667cf14f78caadad5701d25c5 (patch) | |
tree | 91c76e033c7295c90e4f1729bc126cc9c7194965 /src/core/security | |
parent | 8d6ec91241743d121d5540cb9e389de048690415 (diff) |
Addressing comments.
Diffstat (limited to 'src/core/security')
-rw-r--r-- | src/core/security/security_context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/security/security_context.c b/src/core/security/security_context.c index eb1dd1cc4a..c4fdc2b940 100644 --- a/src/core/security/security_context.c +++ b/src/core/security/security_context.c @@ -62,9 +62,9 @@ static const char *installed_roots_path = INSTALL_PREFIX "/share/grpc/roots.pem" /* Defines the cipher suites that we accept by default. All these cipher suites are compliant with HTTP2. */ -#define GRPC_SSL_CIPHER_SUITES \ - "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:AES128-GCM-SHA256:" \ - "AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384" +#define GRPC_SSL_CIPHER_SUITES \ + "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-" \ + "SHA384:ECDHE-RSA-AES256-GCM-SHA384" static gpr_once cipher_suites_once = GPR_ONCE_INIT; static const char *cipher_suites = NULL; |