Index: net/der/parse_values.cc |
diff --git a/net/der/parse_values.cc b/net/der/parse_values.cc |
index bbf765fb0728deedf1e1be33ac1ee46df9e4ecfe..af75cee5b19849d14de2a84e77745fabe13be517 100644 |
--- a/net/der/parse_values.cc |
+++ b/net/der/parse_values.cc |
@@ -164,6 +164,39 @@ bool ParseUint64(const Input& in, uint64_t* out) { |
return true; |
} |
+bool ParseBitString(const Input& in, |
+ Input* out_bytes, |
+ uint8_t* out_unused_bits) { |
+ ByteReader reader(in); |
+ |
+ // The first byte of the value gives the number of unused bits. |
+ // It must be in the range 0 - 7 (or else the encoding is not minimal). |
nharper
2015/07/21 23:23:47
cite spec (this is a requirement for BER, not just
eroman
2015/07/22 17:05:23
Done. I changed the comment to:
// From ITU-T X
|
+ uint8_t unused_bits; |
+ if (!reader.ReadByte(&unused_bits)) |
+ return false; |
+ if (unused_bits > 7) |
+ return false; |
+ |
+ Input bytes; |
+ if (!reader.ReadBytes(reader.BytesLeft(), &bytes)) |
+ return false; // Not reachable. |
+ |
+ // Ensure that unused bits in the last byte are set to 0. |
nharper
2015/07/21 23:23:47
cite spec (this is only a requirement for CER and
eroman
2015/07/22 17:05:23
Done. I added two citations for this section:
|
+ if (unused_bits > 0) { |
+ if (bytes.Length() == 0) |
+ return false; |
+ uint8_t last_byte = bytes.UnsafeData()[bytes.Length() - 1]; |
+ |
+ uint8_t mask = 0xFF >> (8 - unused_bits); |
+ if ((mask & last_byte) != 0) |
+ return false; |
+ } |
+ |
+ *out_bytes = bytes; |
+ *out_unused_bits = unused_bits; |
+ return true; |
+} |
+ |
bool operator<(const GeneralizedTime& lhs, const GeneralizedTime& rhs) { |
if (lhs.year != rhs.year) |
return lhs.year < rhs.year; |