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

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 nharper's comments 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') | net/der/parser.h » ('J')
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..724ecf7648253812c2c98bb0bdf26bae479764b5 100644
--- a/net/der/parse_values.h
+++ b/net/der/parse_values.h
@@ -30,6 +30,19 @@ 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|.
davidben 2015/07/27 20:19:59 Probably should do: octet string -> octet string (
eroman 2015/07/27 21:19:22 Done (although used the other version of your comm
+// 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') | net/der/parser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698