mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
|
// Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include "net/base/hex_utils.h"
|
||
|
|
||
|
#include <algorithm>
|
||
|
#include <cstdint>
|
||
|
#include <vector>
|
||
|
|
||
|
#include "base/strings/string_number_conversions.h"
|
||
|
#include "base/strings/stringprintf.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
std::string HexDecode(base::StringPiece input) {
|
||
|
std::vector<uint8_t> output;
|
||
|
std::string result;
|
||
|
if (base::HexStringToBytes(input, &output))
|
||
|
result.assign(reinterpret_cast<const char*>(&output[0]), output.size());
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
std::string HexDump(base::StringPiece input) {
|
||
|
const int kBytesPerLine = 16; // Maximum bytes dumped per line.
|
||
|
int offset = 0;
|
||
|
const char* buf = input.data();
|
||
|
int bytes_remaining = input.size();
|
||
|
std::string output;
|
||
|
const char* p = buf;
|
||
|
while (bytes_remaining > 0) {
|
||
|
const int line_bytes = std::min(bytes_remaining, kBytesPerLine);
|
||
|
base::StringAppendF(&output, "0x%04x: ", offset);
|
||
|
for (int i = 0; i < kBytesPerLine; ++i) {
|
||
|
if (i < line_bytes) {
|
||
|
base::StringAppendF(&output, "%02x", static_cast<unsigned char>(p[i]));
|
||
|
} else {
|
||
|
output += " ";
|
||
|
}
|
||
|
if (i % 2) {
|
||
|
output += ' ';
|
||
|
}
|
||
|
}
|
||
|
output += ' ';
|
||
|
for (int i = 0; i < line_bytes; ++i) {
|
||
|
// Replace non-printable characters and 0x20 (space) with '.'
|
||
|
output += (p[i] > 0x20 && p[i] < 0x7f) ? p[i] : '.';
|
||
|
}
|
||
|
|
||
|
bytes_remaining -= line_bytes;
|
||
|
offset += line_bytes;
|
||
|
p += line_bytes;
|
||
|
output += '\n';
|
||
|
}
|
||
|
return output;
|
||
|
}
|
||
|
|
||
|
} // namespace net
|