Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: net/third_party/nss/ssl/sslt.h

Issue 64553002: Certificate Transparency TLS extension patch for NSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file contains prototypes for the public SSL functions. 2 * This file contains prototypes for the public SSL functions.
3 * 3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public 4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 7
8 #ifndef __sslt_h_ 8 #ifndef __sslt_h_
9 #define __sslt_h_ 9 #define __sslt_h_
10 10
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 #ifdef NSS_ENABLE_ECC 198 #ifdef NSS_ENABLE_ECC
199 ssl_elliptic_curves_xtn = 10, 199 ssl_elliptic_curves_xtn = 10,
200 ssl_ec_point_formats_xtn = 11, 200 ssl_ec_point_formats_xtn = 11,
201 #endif 201 #endif
202 ssl_signature_algorithms_xtn = 13, 202 ssl_signature_algorithms_xtn = 13,
203 ssl_use_srtp_xtn = 14, 203 ssl_use_srtp_xtn = 14,
204 ssl_app_layer_protocol_xtn = 16, 204 ssl_app_layer_protocol_xtn = 16,
205 ssl_session_ticket_xtn = 35, 205 ssl_session_ticket_xtn = 35,
206 ssl_next_proto_nego_xtn = 13172, 206 ssl_next_proto_nego_xtn = 13172,
207 ssl_channel_id_xtn = 30031, 207 ssl_channel_id_xtn = 30031,
208 ssl_renegotiation_info_xtn = 0xff01» /* experimental number */ 208 ssl_renegotiation_info_xtn = 0xff01,» /* experimental number */
209 ssl_signed_certificate_timestamp_xtn = 18 /* RFC 6962 */
wtc 2013/11/08 19:51:31 Please list this extension after ssl_app_layer_pro
ekasper 2013/11/18 17:47:18 Done.
wtc 2013/11/19 23:52:28 Yes, this is fine. I suggested ssl_signed_cert_tim
209 } SSLExtensionType; 210 } SSLExtensionType;
210 211
211 #define SSL_MAX_EXTENSIONS 11 212 #define SSL_MAX_EXTENSIONS 12
212 213
213 #endif /* __sslt_h_ */ 214 #endif /* __sslt_h_ */
OLDNEW
« net/third_party/nss/ssl/sslsock.c ('K') | « net/third_party/nss/ssl/sslsock.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698