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 #include "net/der/parser.h" | 8 #include "net/der/parser.h" |
9 | 9 |
10 namespace net { | 10 namespace net { |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 return ReadConstructed(kSequence, out); | 179 return ReadConstructed(kSequence, out); |
180 } | 180 } |
181 | 181 |
182 bool Parser::ReadUint64(uint64_t* out) { | 182 bool Parser::ReadUint64(uint64_t* out) { |
183 Input encoded_int; | 183 Input encoded_int; |
184 if (!ReadTag(kInteger, &encoded_int)) | 184 if (!ReadTag(kInteger, &encoded_int)) |
185 return false; | 185 return false; |
186 return ParseUint64(encoded_int, out); | 186 return ParseUint64(encoded_int, out); |
187 } | 187 } |
188 | 188 |
| 189 bool Parser::ReadBitString(Input* bytes, uint8_t* unused_bits) { |
| 190 Input value; |
| 191 if (!ReadTag(kBitString, &value)) |
| 192 return false; |
| 193 return ParseBitString(value, bytes, unused_bits); |
| 194 } |
| 195 |
| 196 bool Parser::ReadBitStringNoUnusedBits(Input* out_bytes) { |
| 197 Input bytes; |
| 198 uint8_t unused_bits; |
| 199 if (!ReadBitString(&bytes, &unused_bits)) |
| 200 return false; |
| 201 |
| 202 if (unused_bits != 0) |
| 203 return false; |
| 204 |
| 205 *out_bytes = bytes; |
| 206 return true; |
| 207 } |
| 208 |
189 } // namespace der | 209 } // namespace der |
190 | 210 |
191 } // namespace net | 211 } // namespace net |
OLD | NEW |