Chromium Code Reviews| Index: net/ssl/ssl_cipher_suite_names.h |
| diff --git a/net/ssl/ssl_cipher_suite_names.h b/net/ssl/ssl_cipher_suite_names.h |
| index 7c1192b279b2ec10d8d7820573c3a97c102d4950..36a6d152bb3fab49a70b94526137a2eea501e445 100644 |
| --- a/net/ssl/ssl_cipher_suite_names.h |
| +++ b/net/ssl/ssl_cipher_suite_names.h |
| @@ -19,11 +19,15 @@ namespace net { |
| // wire and recorded at |
| // http://www.iana.org/assignments/tls-parameters/tls-parameters.xml |
| // If the cipher suite is unknown, the strings are set to "???". |
| -// In the case of an AEAD cipher suite, *mac_str is NULL and *is_aead is true. |
| +// In the case of an AEAD cipher suite, *mac_str is nullptr and *is_aead is |
| +// true. |
| +// In the case of a TLS 1.3 AEAD-only cipher suite, *key_exchange_str is nullptr |
|
svaldez
2016/10/10 14:17:21
Wrap?
davidben
2016/10/10 15:39:38
These seem to be breaking at sentences, so I just
|
| +// and *is_tls13 is true. |
| NET_EXPORT void SSLCipherSuiteToStrings(const char** key_exchange_str, |
| const char** cipher_str, |
| const char** mac_str, |
| bool* is_aead, |
| + bool* is_tls13, |
| uint16_t cipher_suite); |
| // SSLVersionToString returns the name of the SSL protocol version |