There is no need to reproduce wxBase64Encode() in wxHTTP code, should just use
the existing function instead.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64346
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxString wxHTTP::GenerateAuthString(const wxString& user, const wxString& pass) const
{
+ // TODO: Use wxBase64Encode() now that we have it instead of reproducing it
+
static const char *base64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
wxString buf;