Base64.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const Base64_cxx_Version = 
  51.     "$Id: Base64.cxx,v 1.6 2001/04/03 07:51:08 icahoon Exp $";
  52. #include <string.h>
  53. #include "Base64.hxx"
  54. using Vocal::Base64;
  55. char Base64::basis_64[] =
  56.     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  57. char Base64::index_64[128] = 
  58. {
  59.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  60.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  61.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  62.     52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
  63.     -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
  64.     15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  65.     -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  66.     41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1
  67. };
  68. Base64::Base64()
  69. {
  70. }
  71. Base64::~Base64()
  72. {
  73. }
  74. #define char64(c)  (((c) > 127) ? -1 : index_64[(c)])
  75. int Base64::encode(unsigned char* outputBuf, unsigned int* outputLen,
  76.                    unsigned char* inputBuf, unsigned int inputLen)
  77. {
  78.     unsigned char c1, c2, c3;
  79.     unsigned char *pOutputBuf = outputBuf;
  80.     unsigned int count = 0, charsPerLine = 0;
  81.     // Need to initialize c1,c2,c3 to 0 to ensure correct operation
  82.     // in case of a message one byte long
  83.     c1 = 0x00;
  84.     c2 = 0x00;
  85.     c3 = 0x00;
  86.     while (count < inputLen)
  87.     {
  88.         c1 = inputBuf[count++];
  89.         if (count == inputLen)
  90.         {
  91.             c2 = 0x00;
  92.             *pOutputBuf++ = basis_64[c1 >> 2];
  93.             *pOutputBuf++ = basis_64[(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4))];
  94.             *pOutputBuf++ = '=';
  95.             *pOutputBuf++ = '=';
  96.         }
  97.         else // count < inputLen
  98.         {
  99.             c2 = inputBuf[count++];
  100.             if (count == inputLen)
  101.             {
  102.                 c3 = 0x00;
  103.                 *pOutputBuf++ = basis_64[c1 >> 2];
  104.                 *pOutputBuf++ = basis_64[(((c1 & 0x03) << 4) | ((c2 & 0xF0) >> 4))];
  105.                 *pOutputBuf++ = basis_64[(((c2 & 0x0F) << 2) | ((c3 & 0xC0) >> 6))];
  106.                 *pOutputBuf++ = '=';
  107.             }
  108.             else // count  < inputLen
  109.             {
  110.                 c3 = inputBuf[count++];
  111.                 *pOutputBuf++ = basis_64[c1 >> 2];
  112.                 *pOutputBuf++ = basis_64[(((c1 & 0x03) << 4) | ((c2 & 0xF0) >> 4))];
  113.                 *pOutputBuf++ = basis_64[(((c2 & 0x0F) << 2) | ((c3 & 0xC0) >> 6))];
  114.                 *pOutputBuf++ = basis_64[(c3 & 0x3F)];
  115.             }
  116.         }
  117.         charsPerLine += 4;
  118.     } //end while
  119.     *pOutputBuf++ = '';
  120.     *outputLen = strlen((char*)outputBuf);
  121.     return *outputLen;
  122. }
  123. int Base64::decode(unsigned char* outputBuf, unsigned int* outputLen,
  124.                    unsigned char* inputBuf, unsigned int inputLen)
  125. {
  126.     unsigned char c1, c2, c3, c4;
  127.     unsigned int count = 0;
  128.     c1 = *inputBuf++;
  129.     while (c1 != '')
  130.     {
  131.         c2 = *inputBuf++;
  132.         c3 = *inputBuf++;
  133.         c4 = *inputBuf++;
  134.         c1 = char64(c1);
  135.         c2 = char64(c2);
  136.         outputBuf[count++] = ((c1 << 2) | ((c2 & 0x30) >> 4));
  137.         if (c3 != '=')
  138.         {
  139.             c3 = char64(c3);
  140.             outputBuf[count++] = (((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
  141.             if (c4 != '=')
  142.             {
  143.                 c4 = char64(c4);
  144.                 outputBuf[count++] = (((c3 & 0x03) << 6) | c4);
  145.             }
  146.         }
  147.         c1 = *inputBuf++;
  148.         if (c1 == 'r')
  149.         {
  150.             c1 = *inputBuf++;
  151.             if (c1 == 'n')
  152.                 c1 = *inputBuf++;
  153.         }
  154.     }// while c1 != 0
  155.     *outputLen = count;
  156.     return count;
  157. }