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

Unified Diff: net/base/cert_status_flags.cc

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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/base/cert_status_flags.h ('k') | net/base/cert_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cert_status_flags.cc
diff --git a/net/base/cert_status_flags.cc b/net/base/cert_status_flags.cc
deleted file mode 100644
index 07b9751f29a73602004356977dbe02be0a2dff4d..0000000000000000000000000000000000000000
--- a/net/base/cert_status_flags.cc
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/base/cert_status_flags.h"
-
-#include "base/logging.h"
-#include "net/base/net_errors.h"
-
-namespace net {
-
-bool IsCertStatusMinorError(CertStatus cert_status) {
- static const CertStatus kMinorErrors =
- CERT_STATUS_UNABLE_TO_CHECK_REVOCATION |
- CERT_STATUS_NO_REVOCATION_MECHANISM;
- cert_status &= CERT_STATUS_ALL_ERRORS;
- return cert_status != 0 && (cert_status & ~kMinorErrors) == 0;
-}
-
-CertStatus MapNetErrorToCertStatus(int error) {
- switch (error) {
- case ERR_CERT_COMMON_NAME_INVALID:
- return CERT_STATUS_COMMON_NAME_INVALID;
- case ERR_CERT_DATE_INVALID:
- return CERT_STATUS_DATE_INVALID;
- case ERR_CERT_AUTHORITY_INVALID:
- return CERT_STATUS_AUTHORITY_INVALID;
- case ERR_CERT_NO_REVOCATION_MECHANISM:
- return CERT_STATUS_NO_REVOCATION_MECHANISM;
- case ERR_CERT_UNABLE_TO_CHECK_REVOCATION:
- return CERT_STATUS_UNABLE_TO_CHECK_REVOCATION;
- case ERR_CERT_REVOKED:
- return CERT_STATUS_REVOKED;
- // We added the ERR_CERT_CONTAINS_ERRORS error code when we were using
- // WinInet, but we never figured out how it differs from ERR_CERT_INVALID.
- // We should not use ERR_CERT_CONTAINS_ERRORS in new code.
- case ERR_CERT_CONTAINS_ERRORS:
- NOTREACHED();
- // Falls through.
- case ERR_CERT_INVALID:
- return CERT_STATUS_INVALID;
- case ERR_CERT_WEAK_SIGNATURE_ALGORITHM:
- return CERT_STATUS_WEAK_SIGNATURE_ALGORITHM;
- case ERR_CERT_WEAK_KEY:
- return CERT_STATUS_WEAK_KEY;
- default:
- return 0;
- }
-}
-
-int MapCertStatusToNetError(CertStatus cert_status) {
- // A certificate may have multiple errors. We report the most
- // serious error.
-
- // Unrecoverable errors
- if (cert_status & CERT_STATUS_REVOKED)
- return ERR_CERT_REVOKED;
- if (cert_status & CERT_STATUS_INVALID)
- return ERR_CERT_INVALID;
-
- // Recoverable errors
- if (cert_status & CERT_STATUS_AUTHORITY_INVALID)
- return ERR_CERT_AUTHORITY_INVALID;
- if (cert_status & CERT_STATUS_COMMON_NAME_INVALID)
- return ERR_CERT_COMMON_NAME_INVALID;
- if (cert_status & CERT_STATUS_WEAK_SIGNATURE_ALGORITHM)
- return ERR_CERT_WEAK_SIGNATURE_ALGORITHM;
- if (cert_status & CERT_STATUS_WEAK_KEY)
- return ERR_CERT_WEAK_KEY;
- if (cert_status & CERT_STATUS_DATE_INVALID)
- return ERR_CERT_DATE_INVALID;
-
- // Unknown status. Give it the benefit of the doubt.
- if (cert_status & CERT_STATUS_UNABLE_TO_CHECK_REVOCATION)
- return ERR_CERT_UNABLE_TO_CHECK_REVOCATION;
- if (cert_status & CERT_STATUS_NO_REVOCATION_MECHANISM)
- return ERR_CERT_NO_REVOCATION_MECHANISM;
-
- NOTREACHED();
- return ERR_UNEXPECTED;
-}
-
-} // namespace net
« no previous file with comments | « net/base/cert_status_flags.h ('k') | net/base/cert_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698