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

Unified Diff: net/der/parse_values.h

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 | « no previous file | net/der/parse_values.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/der/parse_values.h
diff --git a/net/der/parse_values.h b/net/der/parse_values.h
index fbe1d88b80b694e384f63379812c9bc536fc02e6..b525a64662e23fc9b9b362b3aa920f6c3f414032 100644
--- a/net/der/parse_values.h
+++ b/net/der/parse_values.h
@@ -30,6 +30,23 @@ NET_EXPORT bool ParseBoolRelaxed(const Input& in, bool* out) WARN_UNUSED_RESULT;
// uint64_t, is negative, or if there is an error reading the integer.
NET_EXPORT bool ParseUint64(const Input& in, uint64_t* out) WARN_UNUSED_RESULT;
+// Reads a DER-encoded ASN.1 BIT STRING value from |in| and puts the resulting
+// octet string into |bytes|, and the number of unused bits into |unused_bits|.
+//
+// The bits are ordered within each octet of |bytes| from most to
+// least significant, as in the DER encoding.
+//
+// Returns true on success, otherwise returns false and does not modify the
+// out-parameters.
+//
+// On success it can be assumed that:
+// * |*unused_bits| < 8
+// * The final byte of |bytes| has its |*unused_bits| least significant bits
+// set to 0.
+NET_EXPORT bool ParseBitString(const Input& in,
+ Input* bytes,
+ uint8_t* unused_bits) WARN_UNUSED_RESULT;
+
struct GeneralizedTime {
uint16_t year;
uint8_t month;
« no previous file with comments | « no previous file | net/der/parse_values.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698