| // Copyright 2015 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include <openssl/base.h> |
| std::string Input::AsString() const { |
| return std::string(reinterpret_cast<const char *>(data_.data()), |
| std::string_view Input::AsStringView() const { |
| return std::string_view(reinterpret_cast<const char *>(data_.data()), |
| bssl::Span<const uint8_t> Input::AsSpan() const { return data_; } |
| bool operator==(const Input &lhs, const Input &rhs) { |
| return lhs.AsSpan() == rhs.AsSpan(); |
| bool operator!=(const Input &lhs, const Input &rhs) { return !(lhs == rhs); } |
| ByteReader::ByteReader(const Input &in) |
| : data_(in.UnsafeData()), len_(in.Length()) {} |
| bool ByteReader::ReadByte(uint8_t *byte_p) { |
| bool ByteReader::ReadBytes(size_t len, Input *out) { |
| *out = Input(data_, len); |
| // Returns whether there is any more data to be read. |
| bool ByteReader::HasMore() { return len_ > 0; } |
| void ByteReader::Advance(size_t len) { |