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

Side by Side Diff: net/der/parser.cc

Issue 1248043002: Add functions for DER parsing a BIT STRING. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address David's comment Created 5 years, 4 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
« no previous file with comments | « net/der/parser.h ('k') | net/der/parser_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/der/parser.h ('k') | net/der/parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698