| Index: net/der/input.cc
|
| diff --git a/net/der/input.cc b/net/der/input.cc
|
| index b5388a5f6999975dc89fb4119d5eefb666c53a41..0207cb8c6a142d99e14a24bfed4aa0cae9305681 100644
|
| --- a/net/der/input.cc
|
| +++ b/net/der/input.cc
|
| @@ -23,6 +23,10 @@ bool Input::Equals(const Input& other) const {
|
| return memcmp(data_, other.data_, len_) == 0;
|
| }
|
|
|
| +std::string Input::AsString() const {
|
| + return std::string(reinterpret_cast<const char*>(data_), len_);
|
| +}
|
| +
|
| BitString::BitString(const Input& bytes, uint8_t unused_bits)
|
| : bytes_(bytes), unused_bits_(unused_bits) {
|
| DCHECK_LT(unused_bits, 8);
|
|
|