OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/numerics/safe_math.h" | 6 #include "base/numerics/safe_math.h" |
7 #include "net/der/parse_values.h" | 7 #include "net/der/parse_values.h" |
8 | 8 |
9 namespace net { | 9 namespace net { |
10 | 10 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 return false; | 157 return false; |
158 } | 158 } |
159 if (first_byte == 0 && !(second_byte & 0x80)) { | 159 if (first_byte == 0 && !(second_byte & 0x80)) { |
160 return false; | 160 return false; |
161 } | 161 } |
162 } | 162 } |
163 *out = value; | 163 *out = value; |
164 return true; | 164 return true; |
165 } | 165 } |
166 | 166 |
| 167 bool ParseBitString(const Input& in, |
| 168 Input* out_bytes, |
| 169 uint8_t* out_unused_bits) { |
| 170 ByteReader reader(in); |
| 171 |
| 172 // From ITU-T X.690, section 8.6.2.2 (applies to BER, CER, DER): |
| 173 // |
| 174 // The initial octet shall encode, as an unsigned binary integer with |
| 175 // bit 1 as the least significant bit, the number of unused bits in the final |
| 176 // subsequent octet. The number shall be in the range zero to seven. |
| 177 uint8_t unused_bits; |
| 178 if (!reader.ReadByte(&unused_bits)) |
| 179 return false; |
| 180 if (unused_bits > 7) |
| 181 return false; |
| 182 |
| 183 Input bytes; |
| 184 if (!reader.ReadBytes(reader.BytesLeft(), &bytes)) |
| 185 return false; // Not reachable. |
| 186 |
| 187 // Ensure that unused bits in the last byte are set to 0. |
| 188 if (unused_bits > 0) { |
| 189 // From ITU-T X.690, section 8.6.2.3 (applies to BER, CER, DER): |
| 190 // |
| 191 // If the bitstring is empty, there shall be no subsequent octets, |
| 192 // and the initial octet shall be zero. |
| 193 if (bytes.Length() == 0) |
| 194 return false; |
| 195 uint8_t last_byte = bytes.UnsafeData()[bytes.Length() - 1]; |
| 196 |
| 197 // From ITU-T X.690, section 11.2.1 (applies to CER and DER, but not BER): |
| 198 // |
| 199 // Each unused bit in the final octet of the encoding of a bit string value |
| 200 // shall be set to zero. |
| 201 uint8_t mask = 0xFF >> (8 - unused_bits); |
| 202 if ((mask & last_byte) != 0) |
| 203 return false; |
| 204 } |
| 205 |
| 206 *out_bytes = bytes; |
| 207 *out_unused_bits = unused_bits; |
| 208 return true; |
| 209 } |
| 210 |
167 bool operator<(const GeneralizedTime& lhs, const GeneralizedTime& rhs) { | 211 bool operator<(const GeneralizedTime& lhs, const GeneralizedTime& rhs) { |
168 if (lhs.year != rhs.year) | 212 if (lhs.year != rhs.year) |
169 return lhs.year < rhs.year; | 213 return lhs.year < rhs.year; |
170 if (lhs.month != rhs.month) | 214 if (lhs.month != rhs.month) |
171 return lhs.month < rhs.month; | 215 return lhs.month < rhs.month; |
172 if (lhs.day != rhs.day) | 216 if (lhs.day != rhs.day) |
173 return lhs.day < rhs.day; | 217 return lhs.day < rhs.day; |
174 if (lhs.hours != rhs.hours) | 218 if (lhs.hours != rhs.hours) |
175 return lhs.hours < rhs.hours; | 219 return lhs.hours < rhs.hours; |
176 if (lhs.minutes != rhs.minutes) | 220 if (lhs.minutes != rhs.minutes) |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 return false; | 304 return false; |
261 if (!ValidateGeneralizedTime(time)) | 305 if (!ValidateGeneralizedTime(time)) |
262 return false; | 306 return false; |
263 *value = time; | 307 *value = time; |
264 return true; | 308 return true; |
265 } | 309 } |
266 | 310 |
267 } // namespace der | 311 } // namespace der |
268 | 312 |
269 } // namespace net | 313 } // namespace net |
OLD | NEW |