9 #ifndef BITCOIN_UTIL_STRENCODINGS_H
10 #define BITCOIN_UTIL_STRENCODINGS_H
41 std::vector<uint8_t>
ParseHex(
const char *psz);
42 std::vector<uint8_t>
ParseHex(
const std::string &str);
48 bool IsHex(
const std::string &str);
53 std::vector<uint8_t>
DecodeBase64(
const char *p,
bool *pf_invalid =
nullptr);
54 std::string
DecodeBase64(
const std::string &str,
bool *pf_invalid =
nullptr);
57 std::vector<uint8_t>
DecodeBase32(
const char *p,
bool *pf_invalid =
nullptr);
58 std::string
DecodeBase32(
const std::string &str,
bool *pf_invalid =
nullptr);
72 std::string
EncodeBase32(
const std::string &str,
bool pad =
true);
74 void SplitHostPort(std::string in, uint16_t &portOut, std::string &hostOut);
75 int64_t
atoi64(
const std::string &str);
76 int atoi(
const std::string &str);
84 return c >=
'0' && c <=
'9';
99 constexpr
inline bool IsSpace(
char c) noexcept {
100 return c ==
' ' || c ==
'\f' || c ==
'\n' || c ==
'\r' || c ==
'\t' ||
109 [[nodiscard]]
bool ParseInt32(
const std::string &str, int32_t *out);
116 [[nodiscard]]
bool ParseInt64(
const std::string &str, int64_t *out);
125 [[nodiscard]]
bool ParseUInt8(
const std::string &str, uint8_t *out);
134 [[nodiscard]]
bool ParseUInt16(
const std::string &str, uint16_t *out);
142 [[nodiscard]]
bool ParseUInt32(
const std::string &str, uint32_t *out);
150 [[nodiscard]]
bool ParseUInt64(
const std::string &str, uint64_t *out);
157 [[nodiscard]]
bool ParseDouble(
const std::string &str,
double *out);
180 return a.size() == 0;
182 size_t accumulator = a.size() ^ b.size();
183 for (
size_t i = 0; i < a.size(); i++) {
184 accumulator |= size_t(a[i] ^ b[i % b.size()]);
186 return accumulator == 0;
196 [[nodiscard]]
bool ParseFixedPoint(
const std::string &val,
int decimals,
197 int64_t *amount_out);
205 template <
int frombits,
int tobits,
bool pad,
typename O,
typename I>
209 constexpr
size_t maxv = (1 << tobits) - 1;
210 constexpr
size_t max_acc = (1 << (frombits + tobits - 1)) - 1;
212 acc = ((acc << frombits) | *it) & max_acc;
214 while (bits >= tobits) {
216 outfn((acc >> bits) & maxv);
223 outfn((acc << (tobits - bits)) & maxv);
225 }
else if (bits >= frombits || ((acc << (tobits - bits)) & maxv)) {
243 return (c >=
'A' && c <=
'Z' ? (c -
'A') +
'a' : c);
255 std::string
ToLower(
const std::string &str);
268 return (c >=
'a' && c <=
'z' ? (c -
'a') +
'A' : c);
280 std::string
ToUpper(
const std::string &str);
A Span is an object that can refer to a contiguous sequence of objects.
constexpr auto MakeUCharSpan(V &&v) -> decltype(UCharSpanCast(MakeSpan(std::forward< V >(v))))
Like MakeSpan, but for (const) uint8_t member types only.
std::string FormatParagraph(const std::string &in, size_t width=79, size_t indent=0)
Format a paragraph of text to a fixed width, adding spaces for indentation to any added line.
std::string Capitalize(std::string str)
Capitalizes the first character of the given string.
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
std::string EncodeBase64(Span< const uint8_t > input)
std::string EncodeBase32(Span< const uint8_t > input, bool pad=true)
Base32 encode.
constexpr char ToLower(char c)
Converts the given character to its lowercase equivalent.
bool ParseUInt16(const std::string &str, uint16_t *out)
Convert decimal string to unsigned 16-bit integer with strict parse error feedback.
constexpr bool IsDigit(char c)
Tests if the given character is a decimal digit.
bool ConvertBits(const O &outfn, I it, I end)
Convert from one power-of-2 number base to another.
std::string SanitizeString(const std::string &str, int rule=SAFE_CHARS_DEFAULT)
Remove unsafe chars.
constexpr char ToUpper(char c)
Converts the given character to its uppercase equivalent.
std::vector< uint8_t > DecodeBase64(const char *p, bool *pf_invalid=nullptr)
bool ParseUInt64(const std::string &str, uint64_t *out)
Convert decimal string to unsigned 64-bit integer with strict parse error feedback.
std::vector< uint8_t > DecodeBase32(const char *p, bool *pf_invalid=nullptr)
bool ParseUInt32(const std::string &str, uint32_t *out)
Convert decimal string to unsigned 32-bit integer with strict parse error feedback.
bool TimingResistantEqual(const T &a, const T &b)
Timing-attack-resistant comparison.
bool ParseInt32(const std::string &str, int32_t *out)
Convert string to signed 32-bit integer with strict parse error feedback.
bool ParseFixedPoint(const std::string &val, int decimals, int64_t *amount_out)
Parse number as fixed point according to JSON number syntax.
bool IsHex(const std::string &str)
Returns true if each character in str is a hex character, and has an even number of hex digits.
constexpr bool IsSpace(char c) noexcept
Tests if the given character is a whitespace character.
signed char HexDigit(char c)
int atoi(const std::string &str)
bool IsHexNumber(const std::string &str)
Return true if the string is a hex number, optionally prefixed with "0x".
int64_t atoi64(const std::string &str)
bool ParseInt64(const std::string &str, int64_t *out)
Convert string to signed 64-bit integer with strict parse error feedback.
bool ParseDouble(const std::string &str, double *out)
Convert string to double with strict parse error feedback.
void SplitHostPort(std::string in, uint16_t &portOut, std::string &hostOut)
bool ParseUInt8(const std::string &str, uint8_t *out)
Convert decimal string to unsigned 8-bit integer with strict parse error feedback.
SafeChars
Utilities for converting data from/to strings.
@ SAFE_CHARS_DEFAULT
The full set of allowed chars.
@ SAFE_CHARS_UA_COMMENT
BIP-0014 subset.
@ SAFE_CHARS_URI
Chars allowed in URIs (RFC 3986)
@ SAFE_CHARS_FILENAME
Chars allowed in filenames.
std::vector< uint8_t > ParseHex(const char *psz)