9 #ifndef BITCOIN_UTIL_STRENCODINGS_H
10 #define BITCOIN_UTIL_STRENCODINGS_H
20 #define ARRAYLEN(array) (sizeof(array)/sizeof((array)[0]))
39 std::vector<unsigned char>
ParseHex(
const char* psz);
40 std::vector<unsigned char>
ParseHex(
const std::string& str);
44 bool IsHex(
const std::string& str);
49 std::vector<unsigned char>
DecodeBase64(
const char* p,
bool* pf_invalid =
nullptr);
50 std::string
DecodeBase64(
const std::string& str,
bool* pf_invalid =
nullptr);
53 std::vector<unsigned char>
DecodeBase32(
const char* p,
bool* pf_invalid =
nullptr);
54 std::string
DecodeBase32(
const std::string& str,
bool* pf_invalid =
nullptr);
68 std::string
EncodeBase32(
const std::string& str,
bool pad =
true);
70 void SplitHostPort(std::string in,
int& portOut, std::string& hostOut);
71 int64_t
atoi64(
const std::string& str);
72 int atoi(
const std::string& str);
81 return c >=
'0' && c <=
'9';
95 constexpr
inline bool IsSpace(
char c) noexcept {
96 return c ==
' ' || c ==
'\f' || c ==
'\n' || c ==
'\r' || c ==
'\t' || c ==
'\v';
151 std::string
FormatParagraph(
const std::string& in,
size_t width = 79,
size_t indent = 0);
158 template <
typename T>
161 if (b.size() == 0)
return a.size() == 0;
162 size_t accumulator = a.size() ^ b.size();
163 for (
size_t i = 0; i < a.size(); i++)
164 accumulator |= a[i] ^ b[i%b.size()];
165 return accumulator == 0;
176 template<
int frombits,
int tobits,
bool pad,
typename O,
typename I>
180 constexpr
size_t maxv = (1 << tobits) - 1;
181 constexpr
size_t max_acc = (1 << (frombits + tobits - 1)) - 1;
183 acc = ((acc << frombits) | *it) & max_acc;
185 while (bits >= tobits) {
187 outfn((acc >> bits) & maxv);
192 if (bits) outfn((acc << (tobits - bits)) & maxv);
193 }
else if (bits >= frombits || ((acc << (tobits - bits)) & maxv)) {
211 return (c >=
'A' && c <=
'Z' ? (c -
'A') +
'a' : c);
223 std::string
ToLower(
const std::string& str);
237 return (c >=
'a' && c <=
'z' ? (c -
'a') +
'A' : c);
249 std::string
ToUpper(
const std::string& str);
262 #endif // BITCOIN_UTIL_STRENCODINGS_H
bool TimingResistantEqual(const T &a, const T &b)
Timing-attack-resistant comparison.
The full set of allowed chars.
constexpr char ToUpper(char c)
Converts the given character to its uppercase equivalent.
std::string EncodeBase64(Span< const unsigned char > input)
void SplitHostPort(std::string in, int &portOut, std::string &hostOut)
std::vector< unsigned char > ParseHex(const char *psz)
signed char HexDigit(char c)
constexpr bool IsDigit(char c)
Tests if the given character is a decimal digit.
NODISCARD 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)
std::string EncodeBase32(Span< const unsigned char > input, bool pad=true)
Base32 encode.
std::vector< unsigned char > DecodeBase64(const char *p, bool *pf_invalid=nullptr)
constexpr auto MakeUCharSpan(V &&v) -> decltype(UCharSpanCast(MakeSpan(std::forward< V >(v))))
Like MakeSpan, but for (const) unsigned char member types only.
SafeChars
Used by SanitizeString()
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
std::string Capitalize(std::string str)
Capitalizes the first character of the given string.
std::string SanitizeString(const std::string &str, int rule=SAFE_CHARS_DEFAULT)
Remove unsafe chars.
bool ConvertBits(const O &outfn, I it, I end)
Convert from one power-of-2 number base to another.
Chars allowed in filenames.
NODISCARD bool ParseUInt64(const std::string &str, uint64_t *out)
Convert decimal string to unsigned 64-bit integer with strict parse error feedback.
NODISCARD bool ParseUInt32(const std::string &str, uint32_t *out)
Convert decimal string to unsigned 32-bit integer with strict parse error feedback.
constexpr bool IsSpace(char c) noexcept
Tests if the given character is a whitespace character.
bool IsHexNumber(const std::string &str)
Return true if the string is a hex number, optionally prefixed with "0x".
NODISCARD bool ParseInt64(const std::string &str, int64_t *out)
Convert string to signed 64-bit integer with strict parse error feedback.
NODISCARD bool ParseUInt8(const std::string &str, uint8_t *out)
Convert decimal string to unsigned 8-bit integer with strict parse error feedback.
int atoi(const std::string &str)
int64_t atoi64(const std::string &str)
constexpr char ToLower(char c)
Converts the given character to its lowercase equivalent.
A Span is an object that can refer to a contiguous sequence of objects.
Chars allowed in URIs (RFC 3986)
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...
NODISCARD bool ParseInt32(const std::string &str, int32_t *out)
Convert string to signed 32-bit integer with strict parse error feedback.
std::vector< unsigned char > DecodeBase32(const char *p, bool *pf_invalid=nullptr)
NODISCARD bool ParseDouble(const std::string &str, double *out)
Convert string to double with strict parse error feedback.