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

Unified Diff: net/third_party/nss/ssl/sslt.h

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove "httpsv" scheme, minor NSS/OpenSSL changes Created 9 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/third_party/nss/ssl/sslsock.c ('k') | net/tools/testserver/testserver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/nss/ssl/sslt.h
diff --git a/net/third_party/nss/ssl/sslt.h b/net/third_party/nss/ssl/sslt.h
index 3fa3f9b024ee42855897644437d2c931adccd949..9cb000bfdbfc1b4e551f6d1479c9a5a732a53446 100644
--- a/net/third_party/nss/ssl/sslt.h
+++ b/net/third_party/nss/ssl/sslt.h
@@ -74,6 +74,9 @@ typedef enum {
ssl_kea_dh = 2,
ssl_kea_fortezza = 3, /* deprecated, now unused */
ssl_kea_ecdh = 4,
+ ssl_kea_srp = 5,
+ ssl_kea_srp_rsa = 6,
+ ssl_kea_srp_dss = 7,
ssl_kea_size /* number of ssl_kea_ algorithms */
} SSLKEAType;
@@ -88,6 +91,7 @@ typedef enum {
#define kt_fortezza ssl_kea_fortezza /* deprecated, now unused */
#define kt_ecdh ssl_kea_ecdh
#define kt_kea_size ssl_kea_size
+#define kt_srp ssl_kea_srp
typedef enum {
ssl_sign_null = 0,
@@ -203,13 +207,14 @@ typedef enum {
ssl_elliptic_curves_xtn = 10,
ssl_ec_point_formats_xtn = 11,
#endif
+ ssl_srp_hello_xtn = 12,
ssl_session_ticket_xtn = 35,
ssl_next_proto_neg_xtn = 13172,
ssl_snap_start_xtn = 13174,
ssl_renegotiation_info_xtn = 0xff01 /* experimental number */
} SSLExtensionType;
-#define SSL_MAX_EXTENSIONS 8
+#define SSL_MAX_EXTENSIONS 9
typedef enum {
/* No Snap Start handshake was attempted. */
« no previous file with comments | « net/third_party/nss/ssl/sslsock.c ('k') | net/tools/testserver/testserver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698