![]() |
PRCYCoin
2.0.0.7rc1
P2P Digital Currency
|
Go to the source code of this file.
Macros | |
| #define | BEGIN(a) ((char*)&(a)) |
| Utilities for converting data from/to strings. More... | |
| #define | END(a) ((char*)&((&(a))[1])) |
| #define | UBEGIN(a) ((unsigned char*)&(a)) |
| #define | UEND(a) ((unsigned char*)&((&(a))[1])) |
| #define | ARRAYLEN(array) (sizeof(array) / sizeof((array)[0])) |
| #define | PAIRTYPE(t1, t2) std::pair<t1, t2> |
| This is needed because the foreach macro can't get over the comma in pair<t1, t2> More... | |
Enumerations | |
| enum | SafeChars { SAFE_CHARS_DEFAULT, SAFE_CHARS_UA_COMMENT, SAFE_CHARS_FILENAME } |
| Used by SanitizeString() More... | |
Functions | |
| std::string | SanitizeString (const std::string &str, int rule=SAFE_CHARS_DEFAULT) |
| Remove unsafe chars. More... | |
| std::vector< unsigned char > | ParseHex (const char *psz) |
| std::vector< unsigned char > | ParseHex (const std::string &str) |
| signed char | HexDigit (char c) |
| bool | IsHex (const std::string &str) |
| std::vector< unsigned char > | DecodeBase64 (const char *p, bool *pfInvalid=NULL) |
| std::string | DecodeBase64 (const std::string &str) |
| std::string | EncodeBase64 (const unsigned char *pch, size_t len) |
| std::string | EncodeBase64 (const std::string &str) |
| SecureString | DecodeBase64Secure (const SecureString &input) |
| SecureString | EncodeBase64Secure (const SecureString &input) |
| std::vector< unsigned char > | DecodeBase32 (const char *p, bool *pfInvalid=NULL) |
| std::string | DecodeBase32 (const std::string &str) |
| std::string | EncodeBase32 (const unsigned char *pch, size_t len) |
| std::string | EncodeBase32 (const std::string &str) |
| std::string | i64tostr (int64_t n) |
| std::string | itostr (int n) |
| int64_t | atoi64 (const char *psz) |
| int64_t | atoi64 (const std::string &str) |
| int | atoi (const std::string &str) |
| bool | ParseInt32 (const std::string &str, int32_t *out) |
| Convert string to signed 32-bit integer with strict parse error feedback. More... | |
| bool | ParseInt64 (const std::string &str, int64_t *out) |
| Convert string to signed 64-bit integer with strict parse error feedback. More... | |
| bool | ParseDouble (const std::string &str, double *out) |
| Convert string to double with strict parse error feedback. More... | |
| template<typename T > | |
| std::string | HexStr (const T itbegin, const T itend, bool fSpaces=false) |
| template<typename T > | |
| std::string | HexStr (const T &vch, bool fSpaces=false) |
| std::string | ReverseEndianString (std::string in) |
| Reverse the endianess of a string. More... | |
| 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. More... | |
| template<typename T > | |
| bool | TimingResistantEqual (const T &a, const T &b) |
| Timing-attack-resistant comparison. More... | |
| #define ARRAYLEN | ( | array | ) | (sizeof(array) / sizeof((array)[0])) |
Definition at line 21 of file utilstrencodings.h.
| #define BEGIN | ( | a | ) | ((char*)&(a)) |
Utilities for converting data from/to strings.
Definition at line 17 of file utilstrencodings.h.
| #define END | ( | a | ) | ((char*)&((&(a))[1])) |
Definition at line 18 of file utilstrencodings.h.
| #define PAIRTYPE | ( | t1, | |
| t2 | |||
| ) | std::pair<t1, t2> |
This is needed because the foreach macro can't get over the comma in pair<t1, t2>
Definition at line 24 of file utilstrencodings.h.
| #define UBEGIN | ( | a | ) | ((unsigned char*)&(a)) |
Definition at line 19 of file utilstrencodings.h.
| #define UEND | ( | a | ) | ((unsigned char*)&((&(a))[1])) |
Definition at line 20 of file utilstrencodings.h.
| enum SafeChars |
Used by SanitizeString()
| Enumerator | |
|---|---|
| SAFE_CHARS_DEFAULT | The full set of allowed chars. |
| SAFE_CHARS_UA_COMMENT | BIP-0014 subset. |
| SAFE_CHARS_FILENAME | Chars allowed in filenames. |
Definition at line 27 of file utilstrencodings.h.
| int atoi | ( | const std::string & | str | ) |
Definition at line 587 of file utilstrencodings.cpp.
| int64_t atoi64 | ( | const char * | psz | ) |
| int64_t atoi64 | ( | const std::string & | str | ) |
Definition at line 578 of file utilstrencodings.cpp.
| std::vector<unsigned char> DecodeBase32 | ( | const char * | p, |
| bool * | pfInvalid = NULL |
||
| ) |
| std::string DecodeBase32 | ( | const std::string & | str | ) |
| std::vector<unsigned char> DecodeBase64 | ( | const char * | p, |
| bool * | pfInvalid = NULL |
||
| ) |
| std::string DecodeBase64 | ( | const std::string & | str | ) |
| SecureString DecodeBase64Secure | ( | const SecureString & | input | ) |
Definition at line 236 of file utilstrencodings.cpp.
| std::string EncodeBase32 | ( | const std::string & | str | ) |
| std::string EncodeBase32 | ( | const unsigned char * | pch, |
| size_t | len | ||
| ) |
| std::string EncodeBase64 | ( | const std::string & | str | ) |
| std::string EncodeBase64 | ( | const unsigned char * | pch, |
| size_t | len | ||
| ) |
| SecureString EncodeBase64Secure | ( | const SecureString & | input | ) |
| 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.
Definition at line 527 of file utilstrencodings.cpp.
| signed char HexDigit | ( | char | c | ) |
|
inline |
| std::string HexStr | ( | const T | itbegin, |
| const T | itend, | ||
| bool | fSpaces = false |
||
| ) |
| std::string i64tostr | ( | int64_t | n | ) |
Definition at line 559 of file utilstrencodings.cpp.
| bool IsHex | ( | const std::string & | str | ) |
Definition at line 68 of file utilstrencodings.cpp.
| std::string itostr | ( | int | n | ) |
Definition at line 564 of file utilstrencodings.cpp.
| bool ParseDouble | ( | const std::string & | str, |
| double * | out | ||
| ) |
Convert string to double with strict parse error feedback.
Definition at line 513 of file utilstrencodings.cpp.
| std::vector<unsigned char> ParseHex | ( | const char * | psz | ) |
Definition at line 77 of file utilstrencodings.cpp.
| std::vector<unsigned char> ParseHex | ( | const std::string & | str | ) |
| bool ParseInt32 | ( | const std::string & | str, |
| int32_t * | out | ||
| ) |
Convert string to signed 32-bit integer with strict parse error feedback.
Definition at line 482 of file utilstrencodings.cpp.
| bool ParseInt64 | ( | const std::string & | str, |
| int64_t * | out | ||
| ) |
Convert string to signed 64-bit integer with strict parse error feedback.
Definition at line 498 of file utilstrencodings.cpp.
|
inline |
Reverse the endianess of a string.
Definition at line 109 of file utilstrencodings.h.
| std::string SanitizeString | ( | const std::string & | str, |
| int | rule = SAFE_CHARS_DEFAULT |
||
| ) |
Remove unsafe chars.
Safe chars chosen to allow simple messages/URLs/email addresses, but avoid anything even possibly remotely dangerous like & or >
| [in] | str | The string to sanitize |
| [in] | rule | The set of safe chars to choose (default: least restrictive) |
Definition at line 32 of file utilstrencodings.cpp.
| bool TimingResistantEqual | ( | const T & | a, |
| const T & | b | ||
| ) |
Timing-attack-resistant comparison.
Takes time proportional to length of first argument.
Definition at line 132 of file utilstrencodings.h.
1.8.17