+
+/**
+ This function encodes the given data using base64 and returns the output
+ as a wxString.
+
+ There is no error return.
+
+ To allocate the buffer of the correct size, use wxBase64EncodedSize() or call
+ this function with @a dst set to @NULL -- it will then return the necessary
+ buffer size.
+
+ @param src
+ The input buffer, must not be @NULL.
+ @param srcLen
+ The length of the input data.
+*/
+wxString wxBase64Encode(const void* src, size_t srcLen);
+
+/**
+ This function encodes the given data using base64 and returns the output
+ as a wxString.
+
+ There is no error return.
+*/