Dash Core  0.12.2.1
P2P Digital Currency
utilstrencodings.h File Reference
#include <stdint.h>
#include <string>
#include <vector>

Go to the source code of this file.

Macros

#define BEGIN(a)   ((char*)&(a))
 
#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>
 

Enumerations

enum  SafeChars { SAFE_CHARS_DEFAULT, SAFE_CHARS_UA_COMMENT }
 

Functions

std::string SanitizeString (const std::string &str, int rule=SAFE_CHARS_DEFAULT)
 
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)
 
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)
 
bool ParseInt64 (const std::string &str, int64_t *out)
 
bool ParseDouble (const std::string &str, double *out)
 
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 FormatParagraph (const std::string &in, size_t width=79, size_t indent=0)
 
template<typename T >
bool TimingResistantEqual (const T &a, const T &b)
 
bool ParseFixedPoint (const std::string &val, int decimals, int64_t *amount_out)
 

Macro Definition Documentation

◆ ARRAYLEN

#define ARRAYLEN (   array)    (sizeof(array)/sizeof((array)[0]))

◆ BEGIN

#define BEGIN (   a)    ((char*)&(a))

◆ END

◆ PAIRTYPE

◆ UBEGIN

#define UBEGIN (   a)    ((unsigned char*)&(a))

Definition at line 18 of file utilstrencodings.h.

◆ UEND

#define UEND (   a)    ((unsigned char*)&((&(a))[1]))

Definition at line 19 of file utilstrencodings.h.

Enumeration Type Documentation

◆ SafeChars

enum SafeChars

Used by SanitizeString()

Enumerator
SAFE_CHARS_DEFAULT 

The full set of allowed chars.

SAFE_CHARS_UA_COMMENT 

BIP-0014 subset.

Definition at line 26 of file utilstrencodings.h.

Function Documentation

◆ atoi()

◆ atoi64() [1/2]

int64_t atoi64 ( const char *  psz)

◆ atoi64() [2/2]

int64_t atoi64 ( const std::string &  str)

Definition at line 532 of file utilstrencodings.cpp.

◆ DecodeBase32() [1/2]

std::vector<unsigned char> DecodeBase32 ( const char *  p,
bool *  pfInvalid = NULL 
)

Definition at line 299 of file utilstrencodings.cpp.

Referenced by DecodeBase32(), and CNetAddr::SetSpecial().

◆ DecodeBase32() [2/2]

std::string DecodeBase32 ( const std::string &  str)

◆ DecodeBase64() [1/2]

◆ DecodeBase64() [2/2]

std::string DecodeBase64 ( const std::string &  str)

◆ EncodeBase32() [1/2]

std::string EncodeBase32 ( const unsigned char *  pch,
size_t  len 
)

Definition at line 235 of file utilstrencodings.cpp.

Referenced by EncodeBase32(), and CNetAddr::ToStringIP().

◆ EncodeBase32() [2/2]

std::string EncodeBase32 ( const std::string &  str)

◆ EncodeBase64() [1/2]

◆ EncodeBase64() [2/2]

std::string EncodeBase64 ( const std::string &  str)

◆ FormatParagraph()

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 478 of file utilstrencodings.cpp.

Referenced by HelpMessageOpt(), and LicenseInfo().

◆ HexDigit()

signed char HexDigit ( char  c)

Definition at line 54 of file utilstrencodings.cpp.

Referenced by IsHex(), ParseHex(), and base_blob< 512 >::SetHex().

◆ HexStr() [1/2]

◆ HexStr() [2/2]

template<typename T >
std::string HexStr ( const T &  vch,
bool  fSpaces = false 
)
inline

Definition at line 100 of file utilstrencodings.h.

◆ i64tostr()

std::string i64tostr ( int64_t  n)

Definition at line 513 of file utilstrencodings.cpp.

Referenced by getblocktemplate(), and WriteOrderPos().

◆ IsHex()

bool IsHex ( const std::string &  str)

◆ itostr()

◆ ParseDouble()

bool ParseDouble ( const std::string &  str,
double *  out 
)

Convert string to double with strict parse error feedback.

Returns
true if the entire string could be parsed as valid double, false if not the entire string could be parsed or when overflow or underflow occurred.

Definition at line 464 of file utilstrencodings.cpp.

Referenced by UniValue::get_real().

◆ ParseFixedPoint()

bool ParseFixedPoint ( const std::string &  val,
int  decimals,
int64_t *  amount_out 
)

Parse number as fixed point according to JSON number syntax. See http://json.org/number.gif

Returns
true on success, false on error.
Note
The result must be in the range (-10^18,10^18), otherwise an overflow error will trigger.

Definition at line 573 of file utilstrencodings.cpp.

Referenced by AmountFromValue(), and ParsePaymentAmount().

◆ ParseHex() [1/2]

◆ ParseHex() [2/2]

std::vector<unsigned char> ParseHex ( const std::string &  str)

◆ ParseInt32()

bool ParseInt32 ( const std::string &  str,
int32_t *  out 
)

Convert string to signed 32-bit integer with strict parse error feedback.

Returns
true if the entire string could be parsed as valid integer, false if not the entire string could be parsed or when overflow or underflow occurred.

Definition at line 433 of file utilstrencodings.cpp.

Referenced by UniValue::get_int(), gobject(), LookupSubNet(), rest_getutxos(), SplitHostPort(), MasternodeList::StartAll(), and MasternodeList::updateMyNodeList().

◆ ParseInt64()

bool ParseInt64 ( const std::string &  str,
int64_t *  out 
)

Convert string to signed 64-bit integer with strict parse error feedback.

Returns
true if the entire string could be parsed as valid integer, false if not the entire string could be parsed or when overflow or underflow occurred.

Definition at line 449 of file utilstrencodings.cpp.

Referenced by UniValue::get_int64().

◆ SanitizeString()

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 >

Parameters
[in]strThe string to sanitize
[in]ruleThe set of safe chars to choose (default: least restrictive)
Returns
A new string without unsafe chars

◆ TimingResistantEqual()

template<typename T >
bool TimingResistantEqual ( const T &  a,
const T &  b 
)

Timing-attack-resistant comparison. Takes time proportional to length of first argument.

Definition at line 117 of file utilstrencodings.h.

Referenced by multiUserAuthorized(), and RPCAuthorized().