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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/der/parser.h ('k') | net/der/parser_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/der/parser.cc
diff --git a/net/der/parser.cc b/net/der/parser.cc
index 1d9cbc51086b00a7470addbe0d0448fdf03ecc90..b69b6273ed6c9281e795004c75722d7dbf46af58 100644
--- a/net/der/parser.cc
+++ b/net/der/parser.cc
@@ -186,6 +186,26 @@ bool Parser::ReadUint64(uint64_t* out) {
return ParseUint64(encoded_int, out);
}
+bool Parser::ReadBitString(Input* bytes, uint8_t* unused_bits) {
+ Input value;
+ if (!ReadTag(kBitString, &value))
+ return false;
+ return ParseBitString(value, bytes, unused_bits);
+}
+
+bool Parser::ReadBitStringNoUnusedBits(Input* out_bytes) {
+ Input bytes;
+ uint8_t unused_bits;
+ if (!ReadBitString(&bytes, &unused_bits))
+ return false;
+
+ if (unused_bits != 0)
+ return false;
+
+ *out_bytes = bytes;
+ return true;
+}
+
} // namespace der
} // namespace net
« 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