OLD | NEW |
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2010 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 #include "net/base/x509_cert_types.h" | 5 #include "net/base/x509_cert_types.h" |
6 | 6 |
7 #include <ostream> | 7 #include <ostream> |
8 | 8 |
9 #include "net/base/x509_certificate.h" | 9 #include "net/base/x509_certificate.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/string_number_conversions.h" |
| 12 #include "base/string_piece.h" |
| 13 #include "base/time.h" |
11 | 14 |
12 namespace net { | 15 namespace net { |
13 | 16 |
| 17 namespace { |
| 18 |
| 19 // Helper for ParseCertificateDate. |*field| must contain at least |
| 20 // |field_len| characters. |*field| will be advanced by |field_len| on exit. |
| 21 // |*ok| is set to false if there is an error in parsing the number, but left |
| 22 // untouched otherwise. Returns the parsed integer. |
| 23 int ParseIntAndAdvance(const char** field, size_t field_len, bool* ok) { |
| 24 int result = 0; |
| 25 *ok &= base::StringToInt(*field, *field + field_len, &result); |
| 26 *field += field_len; |
| 27 return result; |
| 28 } |
| 29 |
| 30 } // namespace |
| 31 |
14 bool match(const std::string &str, const std::string &against) { | 32 bool match(const std::string &str, const std::string &against) { |
15 // TODO(snej): Use the full matching rules specified in RFC 5280 sec. 7.1 | 33 // TODO(snej): Use the full matching rules specified in RFC 5280 sec. 7.1 |
16 // including trimming and case-folding: <http://www.ietf.org/rfc/rfc5280.txt>. | 34 // including trimming and case-folding: <http://www.ietf.org/rfc/rfc5280.txt>. |
17 return against == str; | 35 return against == str; |
18 } | 36 } |
19 | 37 |
20 bool match(const std::vector<std::string> &rdn1, | 38 bool match(const std::vector<std::string> &rdn1, |
21 const std::vector<std::string> &rdn2) { | 39 const std::vector<std::string> &rdn2) { |
22 // "Two relative distinguished names RDN1 and RDN2 match if they have the | 40 // "Two relative distinguished names RDN1 and RDN2 match if they have the |
23 // same number of naming attributes and for each naming attribute in RDN1 | 41 // same number of naming attributes and for each naming attribute in RDN1 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 } | 146 } |
129 | 147 |
130 bool CertPolicy::HasAllowedCert() const { | 148 bool CertPolicy::HasAllowedCert() const { |
131 return !allowed_.empty(); | 149 return !allowed_.empty(); |
132 } | 150 } |
133 | 151 |
134 bool CertPolicy::HasDeniedCert() const { | 152 bool CertPolicy::HasDeniedCert() const { |
135 return !denied_.empty(); | 153 return !denied_.empty(); |
136 } | 154 } |
137 | 155 |
| 156 bool ParseCertificateDate(const base::StringPiece& raw_date, |
| 157 CertificateDateFormat format, |
| 158 base::Time* time) { |
| 159 size_t year_length = format == CERT_DATE_FORMAT_UTC_TIME ? 2 : 4; |
| 160 |
| 161 if (raw_date.length() < 11 + year_length) |
| 162 return false; |
| 163 |
| 164 const char* field = raw_date.data(); |
| 165 bool valid = true; |
| 166 base::Time::Exploded exploded = {0}; |
| 167 |
| 168 exploded.year = ParseIntAndAdvance(&field, year_length, &valid); |
| 169 exploded.month = ParseIntAndAdvance(&field, 2, &valid); |
| 170 exploded.day_of_month = ParseIntAndAdvance(&field, 2, &valid); |
| 171 exploded.hour = ParseIntAndAdvance(&field, 2, &valid); |
| 172 exploded.minute = ParseIntAndAdvance(&field, 2, &valid); |
| 173 exploded.second = ParseIntAndAdvance(&field, 2, &valid); |
| 174 if (valid && year_length == 2) |
| 175 exploded.year += exploded.year < 50 ? 2000 : 1900; |
| 176 |
| 177 valid &= exploded.HasValidValues(); |
| 178 |
| 179 if (!valid) |
| 180 return false; |
| 181 |
| 182 *time = base::Time::FromUTCExploded(exploded); |
| 183 return true; |
| 184 } |
| 185 |
138 } // namespace net | 186 } // namespace net |
OLD | NEW |