Base64Enc.cpp
上传用户:woshihumen
上传日期:2013-07-18
资源大小:484k
文件大小:4k
源码类别:

Email服务器

开发平台:

Visual C++

  1. /*
  2.  *  XMail by Davide Libenzi ( Intranet and Internet mail server )
  3.  *  Copyright (C) 1999,..,2004  Davide Libenzi
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  *
  19.  *  Davide Libenzi <davidel@xmailserver.org>
  20.  *
  21.  */
  22. #include "SysInclude.h"
  23. #include "SysDep.h"
  24. #include "SvrDefines.h"
  25. #include "StrUtils.h"
  26. #include "BuffSock.h"
  27. #include "MiscUtils.h"
  28. #include "Base64Enc.h"
  29. #define OK                  (0)
  30. #define FAIL                (-1)
  31. #define BUFOVER             (-2)
  32. #define CHAR64(c)           (((c) < 0 || (c) > 127) ? -1 : index_64[(c)])
  33. static char basis_64[] =
  34.     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????";
  35. static char index_64[128] = {
  36. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  37. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  38. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  39. 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
  40. -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  41. 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  42. -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  43. 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1
  44. };
  45. int encode64(const char *_in, unsigned inlen, char *_out, unsigned outmax, unsigned *outlen)
  46. {
  47. const unsigned char *in = (const unsigned char *) _in;
  48. unsigned char *out = (unsigned char *) _out;
  49. unsigned char oval;
  50. char *blah;
  51. unsigned olen;
  52. olen = (inlen + 2) / 3 * 4;
  53. if (outlen)
  54. *outlen = olen;
  55. if (outmax < olen)
  56. return BUFOVER;
  57. blah = (char *) out;
  58. while (inlen >= 3) {
  59. /* user provided max buffer size; make sure we don't go over it */
  60. *out++ = basis_64[in[0] >> 2];
  61. *out++ = basis_64[((in[0] << 4) & 0x30) | (in[1] >> 4)];
  62. *out++ = basis_64[((in[1] << 2) & 0x3c) | (in[2] >> 6)];
  63. *out++ = basis_64[in[2] & 0x3f];
  64. in += 3;
  65. inlen -= 3;
  66. }
  67. if (inlen > 0) {
  68. /* user provided max buffer size; make sure we don't go over it */
  69. *out++ = basis_64[in[0] >> 2];
  70. oval = (in[0] << 4) & 0x30;
  71. if (inlen > 1)
  72. oval |= in[1] >> 4;
  73. *out++ = basis_64[oval];
  74. *out++ = (inlen < 2) ? '=' : basis_64[(in[1] << 2) & 0x3c];
  75. *out++ = '=';
  76. }
  77. if (olen < outmax)
  78. *out = '';
  79. return OK;
  80. }
  81. int decode64(const char *in, unsigned inlen, char *out, unsigned *outlen)
  82. {
  83. unsigned len = 0;
  84. unsigned lup;
  85. int c1;
  86. int c2;
  87. int c3;
  88. int c4;
  89. if (inlen >= 2 && in[0] == '+' && in[1] == ' ')
  90. in += 2, inlen -= 2;
  91. if (*in == '')
  92. return FAIL;
  93. for (lup = 0; lup < inlen / 4; lup++) {
  94. c1 = in[0];
  95. if (CHAR64(c1) == -1)
  96. return FAIL;
  97. c2 = in[1];
  98. if (CHAR64(c2) == -1)
  99. return FAIL;
  100. c3 = in[2];
  101. if (c3 != '=' && CHAR64(c3) == -1)
  102. return FAIL;
  103. c4 = in[3];
  104. if (c4 != '=' && CHAR64(c4) == -1)
  105. return FAIL;
  106. in += 4;
  107. *out++ = (CHAR64(c1) << 2) | (CHAR64(c2) >> 4);
  108. ++len;
  109. if (c3 != '=') {
  110. *out++ = ((CHAR64(c2) << 4) & 0xf0) | (CHAR64(c3) >> 2);
  111. ++len;
  112. if (c4 != '=') {
  113. *out++ = ((CHAR64(c3) << 6) & 0xc0) | CHAR64(c4);
  114. ++len;
  115. }
  116. }
  117. }
  118. *out = 0;
  119. *outlen = len;
  120. return OK;
  121. }