2020-12-13 01:35:14 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-12-13 01:35:14 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/Array.h>
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
|
|
#include <AK/Hex.h>
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
Optional<ByteBuffer> decode_hex(const StringView& input)
|
|
|
|
{
|
|
|
|
if ((input.length() % 2) != 0)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
auto output = ByteBuffer::create_zeroed(input.length() / 2);
|
|
|
|
|
2021-04-18 20:12:03 +03:00
|
|
|
for (size_t i = 0; i < input.length() / 2; ++i) {
|
|
|
|
const auto c1 = decode_hex_digit(input[i * 2]);
|
2020-12-13 01:35:14 +03:00
|
|
|
if (c1 >= 16)
|
|
|
|
return {};
|
|
|
|
|
2021-04-18 20:12:03 +03:00
|
|
|
const auto c2 = decode_hex_digit(input[i * 2 + 1]);
|
2020-12-13 01:35:14 +03:00
|
|
|
if (c2 >= 16)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
output[i] = (c1 << 4) + c2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2021-04-18 20:12:03 +03:00
|
|
|
String encode_hex(const ReadonlyBytes input)
|
2020-12-13 01:35:14 +03:00
|
|
|
{
|
|
|
|
StringBuilder output(input.size() * 2);
|
|
|
|
|
|
|
|
for (auto ch : input)
|
2021-02-09 18:08:11 +03:00
|
|
|
output.appendff("{:02x}", ch);
|
2020-12-13 01:35:14 +03:00
|
|
|
|
|
|
|
return output.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|