Wt  3.3.8
Enumerations | Functions
Wt::Utils Namespace Reference

Namespace with utility functions. More...

Enumerations

Functions

WT_API std::string md5 (const std::string &data)
 Computes an MD5 hash. More...
 
WT_API std::string sha1 (const std::string &data)
 Computes a SHA-1 hash. More...
 
WT_API std::string base64Encode (const std::string &data, bool crlf=true)
 Performs Base64-encoding of data. More...
 
WT_API std::string base64Decode (const std::string &data)
 Performs Base64-decoding of data. More...
 
WT_API std::string hexEncode (const std::string &data)
 Performs Hex-encoding of data. More...
 
WT_API std::string hexDecode (const std::string &data)
 Performs Hex-decoding of data. More...
 
WT_API std::string htmlEncode (const std::string &text, WFlags< HtmlEncodingFlag > flags=0)
 Performs HTML encoding of text. More...
 
WT_API WString htmlEncode (const WString &text, WFlags< HtmlEncodingFlag > flags=0)
 Performs HTML encoding of text. More...
 
WT_API std::string urlEncode (const std::string &text)
 Performs Url encoding (aka percentage encoding). More...
 
WT_API std::string urlDecode (const std::string &text)
 Performs Url decoding. More...
 
WT_API bool removeScript (WString &text)
 Remove tags/attributes from text that are not passive. More...
 
WT_API std::string guessImageMimeTypeData (const std::vector< unsigned char > &header)
 Guess the image mime type from an image. More...
 
WT_API std::string guessImageMimeType (const std::string &file)
 Guess the image mime type from an image. More...
 
WT_API std::string hmac (const std::string &text, const std::string &key, std::string(*hashfunction)(const std::string &), size_t blocksize, size_t keysize)
 Computes a hash-based message authentication code. More...
 
WT_API std::string hmac_md5 (const std::string &text, const std::string &key)
 Computes a hash-based message authentication code. More...
 
WT_API std::string hmac_sha1 (const std::string &text, const std::string &key)
 Computes a hash-based message authentication code. More...
 

Detailed Description

Namespace with utility functions.

This namespace contains functions for computing message digests with cryptographic hash functions (md5, sha1), and functions that implement encoding and decoding for common encodings.

Enumeration Type Documentation

An enumeration for HTML encoding flags.

Enumerator
EncodeNewLines 

Encode new-lines as line breaks (<br>)

Function Documentation

std::string Wt::Utils::base64Decode ( const std::string &  data)

Performs Base64-decoding of data.

This utility function implements a Base64 decoding (RFC 2045) of the data. Illegal characters are discarded and skipped.

See also
base64Encode()
std::string Wt::Utils::base64Encode ( const std::string &  data,
bool  crlf = true 
)

Performs Base64-encoding of data.

This utility function implements a Base64 encoding (RFC 2045) of the data.

When the crlf argument is true, a CRLF character will be added after each sequence of 76 characters.

See also
base64Decode()
std::string Wt::Utils::guessImageMimeType ( const std::string &  file)

Guess the image mime type from an image.

This function opens the image file, reads the first 25 bytes and calls guessImageMimeTypeData() to infer the mime type.

std::string Wt::Utils::guessImageMimeTypeData ( const std::vector< unsigned char > &  header)

Guess the image mime type from an image.

This function examines the header of an image and tries to identify the image type.

At the moment, it recognizes and returns as mime type :

  • image/png
  • image/jpeg
  • image/gif
  • image/bmp

The header should contain (at least) the 25 first bytes of the image data.

If no mime-type could be derived, an empty string is returned.

See also
guessImageMimeTypeData()
std::string Wt::Utils::hexDecode ( const std::string &  data)

Performs Hex-decoding of data.

Illegal characters are discarded and skipped.

See also
hexEncode()
std::string Wt::Utils::hexEncode ( const std::string &  data)

Performs Hex-encoding of data.

A hex-encoding outputs the value of every byte as as two-digit hexadecimal number.

See also
hexDecode()
std::string Wt::Utils::hmac ( const std::string &  text,
const std::string &  key,
std::string(*)(const std::string &)  hashfunction,
size_t  blocksize,
size_t  keysize 
)

Computes a hash-based message authentication code.

This utility function computes a HMAC, and returns the raw (binary) hash value. Takes as arguments the text to be hashed, a secret key, a function pointer to a hashfunction, the internal block size of the hashfunction in bytes and the size of the resulting hash value the function produces. A maximum blocksize of 2048 bits (256 bytes) is supported.

See also
hmac_sha1()
hmac_md5()
std::string Wt::Utils::hmac_md5 ( const std::string &  text,
const std::string &  key 
)

Computes a hash-based message authentication code.

Uses the md5 hashfunction, returns a raw (binary) hash value.

See also
hmac()
std::string Wt::Utils::hmac_sha1 ( const std::string &  text,
const std::string &  key 
)

Computes a hash-based message authentication code.

Uses the sha1 hashfunction, returns a raw (binary) hash value.

See also
hmac()
std::string Wt::Utils::htmlEncode ( const std::string &  text,
WFlags< HtmlEncodingFlag flags = 0 
)

Performs HTML encoding of text.

This utility function escapes characters so that the text can be embodied verbatim in a HTML text block.

WString Wt::Utils::htmlEncode ( const WString text,
WFlags< HtmlEncodingFlag flags = 0 
)

Performs HTML encoding of text.

This utility function escapes characters so that the text can be embodied verbatim in a HTML text block.

By default, newlines are ignored. By passing the EncodeNewLines flag, these may be encoded as line breaks (<br>).

std::string Wt::Utils::md5 ( const std::string &  data)

Computes an MD5 hash.

This utility function computes an MD5 hash, and returns the raw (binary) hash value.

See also
sha1()
bool Wt::Utils::removeScript ( WString text)

Remove tags/attributes from text that are not passive.

This removes tags and attributes from XHTML-formatted text that do not simply display something but may trigger scripting, and could have been injected by a malicious user for Cross-Site Scripting (XSS).

This method is used by the library to sanitize XHTML-formatted text set in WText, but it may also be useful outside the library to sanitize user content when directly using JavaScript.

Modifies the text if needed. When the text is not proper XML, returns false.

std::string Wt::Utils::sha1 ( const std::string &  data)

Computes a SHA-1 hash.

This utility function computes a SHA-1 hash, and returns the raw (binary) hash value.

See also
md5()
std::string Wt::Utils::urlDecode ( const std::string &  text)

Performs Url decoding.

This utility function percent encodes a text so that it can be embodied verbatim in a URL (e.g. as a fragment).

Note
To url decode a unicode string, the de-facto standard practice is to interpret the string as a UTF-8 encoded string.
See also
WString::fromUTF8(), urlEncode()
std::string Wt::Utils::urlEncode ( const std::string &  text)

Performs Url encoding (aka percentage encoding).

This utility function percent encodes a text so that it can be embodied verbatim in a URL (e.g. as a fragment).

Note
To url encode a unicode string, the de-facto standard practice is to encode a UTF-8 encoded string.
See also
WString::toUTF8(), urlDecode()

Generated on Mon Sep 4 2017 for the C++ Web Toolkit (Wt) by doxygen 1.8.11