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

Side by Side Diff: net/cert/cert_status_flags.h

Issue 20628006: Reject certificates that are valid for too long. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase?! In our moment of triumph?! Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_CERT_CERT_STATUS_FLAGS_H_ 5 #ifndef NET_CERT_CERT_STATUS_FLAGS_H_
6 #define NET_CERT_CERT_STATUS_FLAGS_H_ 6 #define NET_CERT_CERT_STATUS_FLAGS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "net/base/net_export.h" 9 #include "net/base/net_export.h"
10 10
(...skipping 17 matching lines...) Expand all
28 static const CertStatus CERT_STATUS_UNABLE_TO_CHECK_REVOCATION = 1 << 5; 28 static const CertStatus CERT_STATUS_UNABLE_TO_CHECK_REVOCATION = 1 << 5;
29 static const CertStatus CERT_STATUS_REVOKED = 1 << 6; 29 static const CertStatus CERT_STATUS_REVOKED = 1 << 6;
30 static const CertStatus CERT_STATUS_INVALID = 1 << 7; 30 static const CertStatus CERT_STATUS_INVALID = 1 << 7;
31 static const CertStatus CERT_STATUS_WEAK_SIGNATURE_ALGORITHM = 1 << 8; 31 static const CertStatus CERT_STATUS_WEAK_SIGNATURE_ALGORITHM = 1 << 8;
32 // 1 << 9 was used for CERT_STATUS_NOT_IN_DNS 32 // 1 << 9 was used for CERT_STATUS_NOT_IN_DNS
33 static const CertStatus CERT_STATUS_NON_UNIQUE_NAME = 1 << 10; 33 static const CertStatus CERT_STATUS_NON_UNIQUE_NAME = 1 << 10;
34 static const CertStatus CERT_STATUS_WEAK_KEY = 1 << 11; 34 static const CertStatus CERT_STATUS_WEAK_KEY = 1 << 11;
35 static const CertStatus CERT_STATUS_WEAK_DH_KEY = 1 << 12; 35 static const CertStatus CERT_STATUS_WEAK_DH_KEY = 1 << 12;
36 static const CertStatus CERT_STATUS_PINNED_KEY_MISSING = 1 << 13; 36 static const CertStatus CERT_STATUS_PINNED_KEY_MISSING = 1 << 13;
37 static const CertStatus CERT_STATUS_NAME_CONSTRAINT_VIOLATION = 1 << 14; 37 static const CertStatus CERT_STATUS_NAME_CONSTRAINT_VIOLATION = 1 << 14;
38 static const CertStatus CERT_STATUS_TOO_LONG_VALIDITY = 1 << 15;
38 39
39 // Bits 16 to 31 are for non-error statuses. 40 // Bits 16 to 31 are for non-error statuses.
40 static const CertStatus CERT_STATUS_IS_EV = 1 << 16; 41 static const CertStatus CERT_STATUS_IS_EV = 1 << 16;
41 static const CertStatus CERT_STATUS_REV_CHECKING_ENABLED = 1 << 17; 42 static const CertStatus CERT_STATUS_REV_CHECKING_ENABLED = 1 << 17;
42 // bit 18 was CERT_STATUS_IS_DNSSEC. 43 // bit 18 was CERT_STATUS_IS_DNSSEC.
43 44
44 // Returns true if the specified cert status has an error set. 45 // Returns true if the specified cert status has an error set.
45 static inline bool IsCertStatusError(CertStatus status) { 46 static inline bool IsCertStatusError(CertStatus status) {
46 return (CERT_STATUS_ALL_ERRORS & status) != 0; 47 return (CERT_STATUS_ALL_ERRORS & status) != 0;
47 } 48 }
48 49
49 // IsCertStatusMinorError returns true iff |cert_status| indicates a condition 50 // IsCertStatusMinorError returns true iff |cert_status| indicates a condition
50 // that should typically be ignored by automated requests. (i.e. a revocation 51 // that should typically be ignored by automated requests. (i.e. a revocation
51 // check failure.) 52 // check failure.)
52 NET_EXPORT bool IsCertStatusMinorError(CertStatus cert_status); 53 NET_EXPORT bool IsCertStatusMinorError(CertStatus cert_status);
53 54
54 // Maps a network error code to the equivalent certificate status flag. If 55 // Maps a network error code to the equivalent certificate status flag. If
55 // the error code is not a certificate error, it is mapped to 0. 56 // the error code is not a certificate error, it is mapped to 0.
56 NET_EXPORT CertStatus MapNetErrorToCertStatus(int error); 57 NET_EXPORT CertStatus MapNetErrorToCertStatus(int error);
57 58
58 // Maps the most serious certificate error in the certificate status flags 59 // Maps the most serious certificate error in the certificate status flags
59 // to the equivalent network error code. 60 // to the equivalent network error code.
60 NET_EXPORT int MapCertStatusToNetError(CertStatus cert_status); 61 NET_EXPORT int MapCertStatusToNetError(CertStatus cert_status);
61 62
62 } // namespace net 63 } // namespace net
63 64
64 #endif // NET_CERT_CERT_STATUS_FLAGS_H_ 65 #endif // NET_CERT_CERT_STATUS_FLAGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698