Alessandro Bonazzi 5e9513c5b2 Patch level : 12.00
Files correlati     :

Commento:
wxSMTP
2024-11-05 20:43:31 +01:00

123 lines
3.2 KiB
C++

//*********************************************************************
//* Base64 - a simple base64 encoder and decoder.
//*
//* Copyright (c) 1999, Bob Withers - bwit@pobox.com
//*
//* This code may be freely used for any purpose, either personal
//* or commercial, provided the authors copyright notice remains
//* intact.
//*********************************************************************
//
// converted to wxWindows by Frank Buß
//
#include "Base64.h"
const wxChar fillchar = '=';
// 00000000001111111111222222
// 01234567890123456789012345
static wxString cvt = _T("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
// 22223333333333444444444455
// 67890123456789012345678901
"abcdefghijklmnopqrstuvwxyz"
// 555555556666
// 234567890123
"0123456789+/");
wxString wxBase64::Encode(const wxUint8* pData, size_t len)
{
size_t c;
wxString ret;
ret.Alloc(len * 4 / 3 + len * 2 / 50);
size_t resultLen = 0;
wxString cr(wxT("\x00d\x00a"));
for (size_t i = 0; i < len; ++i)
{
c = (pData[i] >> 2) & 0x3f;
ret.Append(cvt[c], 1);
if (++resultLen == 72) { ret += cr; resultLen = 0; }
c = (pData[i] << 4) & 0x3f;
if (++i < len)
c |= (pData[i] >> 4) & 0x0f;
ret.Append(cvt[c], 1);
if (++resultLen == 72) { ret += cr; resultLen = 0; }
if (i < len)
{
c = (pData[i] << 2) & 0x3f;
if (++i < len)
c |= (pData[i] >> 6) & 0x03;
ret.Append(cvt[c], 1);
}
else
{
++i;
ret.Append(fillchar, 1);
}
if (++resultLen == 72) { ret += cr; resultLen = 0; }
if (i < len)
{
c = pData[i] & 0x3f;
ret.Append(cvt[c], 1);
}
else
{
ret.Append(fillchar, 1);
}
if (++resultLen == 72) { ret += cr; resultLen = 0; }
}
return ret;
}
wxString wxBase64::Decode(const wxString& data)
{
int c;
int c1;
size_t len = data.Length();
wxString ret;
ret.Alloc(data.Length() * 3 / 4);
for (size_t i = 0; i < len; ++i)
{
// TODO: check all Find results for -1 as result of wrong input data for release build
c = cvt.Find(data[i]);
wxASSERT_MSG(c >= 0, _T("invalid base64 input"));
++i;
c1 = cvt.Find(data[i]);
wxASSERT_MSG(c1 >= 0, _T("invalid base64 input"));
c = (c << 2) | ((c1 >> 4) & 0x3);
ret.Append(c, 1);
if (++i < len)
{
c = data[i];
if (fillchar == c)
break;
c = cvt.Find(c);
wxASSERT_MSG(c >= 0, _T("invalid base64 input"));
c1 = ((c1 << 4) & 0xf0) | ((c >> 2) & 0xf);
ret.Append(c1, 1);
}
if (++i < len)
{
c1 = data[i];
if (fillchar == c1)
break;
c1 = cvt.Find(c1);
wxASSERT_MSG(c1 >= 0, _T("invalid base64 input"));
c = ((c << 6) & 0xc0) | c1;
ret.Append(c, 1);
}
}
return ret;
}