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

Unified Diff: net/base/net_error_list.h

Issue 20628006: Reject certificates that are valid for too long. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "Manual rebase" due to age. Created 6 years, 2 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
Index: net/base/net_error_list.h
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h
index 89fbfff08c1cc302367f84a938bf0c2685718c8e..d4278073cb38b6b6d8db353e5eb8aeb2b778dee4 100644
--- a/net/base/net_error_list.h
+++ b/net/base/net_error_list.h
@@ -444,13 +444,16 @@ NET_ERROR(CERT_WEAK_KEY, -211)
// The certificate claimed DNS names that are in violation of name constraints.
NET_ERROR(CERT_NAME_CONSTRAINT_VIOLATION, -212)
+// The certificate's validity period is too long.
+NET_ERROR(CERT_TOO_LONG_VALIDITY, -213)
Ryan Sleevi 2014/10/29 22:22:06 CERT_VALIDITY_TOO_LONG ?
palmer 2014/10/30 01:23:16 Done throughout.
+
// Add new certificate error codes here.
//
// Update the value of CERT_END whenever you add a new certificate error
// code.
// The value immediately past the last certificate error code.
-NET_ERROR(CERT_END, -213)
+NET_ERROR(CERT_END, -214)
// The URL is invalid.
NET_ERROR(INVALID_URL, -300)

Powered by Google App Engine
This is Rietveld 408576698