Base64.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:19k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: Base64.cpp,v $
  58.  * Revision 1.10  2003/05/20 22:10:02  peiyongz
  59.  * To differentiate external/internal memory
  60.  *
  61.  * Revision 1.8  2003/01/27 21:15:56  peiyongz
  62.  * only zero or one space allowed in between B64 character.
  63.  *
  64.  * Revision 1.7  2002/12/20 22:10:20  tng
  65.  * XML 1.1
  66.  *
  67.  * Revision 1.6  2002/11/25 18:14:35  peiyongz
  68.  * Schema Errata: E2-9 Base64
  69.  *
  70.  * Revision 1.5  2002/11/04 15:22:03  tng
  71.  * C++ Namespace Support.
  72.  *
  73.  * Revision 1.4  2002/03/19 17:01:20  peiyongz
  74.  * Fix to Bug#7243 Base64 encoding is not working.
  75.  *
  76.  * Revision 1.3  2002/02/18 16:07:38  peiyongz
  77.  * fix: "i" redefined on line 428 reported by compilers on some UNIX platforms
  78.  *
  79.  * Revision 1.2  2002/02/15 21:36:56  peiyongz
  80.  * Interface redefined for conversion in XMLByte
  81.  *
  82.  * Revision 1.1.1.1  2002/02/01 22:22:09  peiyongz
  83.  * sane_include
  84.  *
  85.  * Revision 1.6  2001/10/15 19:42:16  knoaman
  86.  * Null-terminate base64Alphabet.
  87.  *
  88.  * Revision 1.5  2001/10/10 19:14:08  peiyongz
  89.  * Patch from Petr Gotthard : encode() provided and some other changes
  90.  *
  91.  * Revision 1.4  2001/06/07 20:55:20  tng
  92.  * Fix no newline at the end warning.  By Pei Yong Zhang.
  93.  *
  94.  * Revision 1.3  2001/05/28 21:11:16  tng
  95.  * Schema: Various DatatypeValidator fix.  By Pei Yong Zhang
  96.  *
  97.  * Revision 1.2  2001/05/16 19:01:04  tng
  98.  * Schema: Typo fix in Base64
  99.  *
  100.  * Revision 1.1  2001/05/16 15:25:36  tng
  101.  * Schema: Add Base64 and HexBin.  By Pei Yong Zhang.
  102.  *
  103.  */
  104. // ---------------------------------------------------------------------------
  105. //  Includes
  106. // ---------------------------------------------------------------------------
  107. #include <xercesc/util/Base64.hpp>
  108. #include <xercesc/util/XMLString.hpp>
  109. #include <xercesc/util/Janitor.hpp>
  110. #include <xercesc/internal/XMLReader.hpp>
  111. XERCES_CPP_NAMESPACE_BEGIN
  112. // ---------------------------------------------------------------------------
  113. //  constants
  114. // ---------------------------------------------------------------------------
  115. static const int BASELENGTH = 255;
  116. static const int FOURBYTE   = 4;
  117. // ---------------------------------------------------------------------------
  118. //  class data member
  119. // ---------------------------------------------------------------------------
  120. // the base64 alphabet according to definition in RFC 2045
  121. const XMLByte Base64::base64Alphabet[] = {
  122.     chLatin_A, chLatin_B, chLatin_C, chLatin_D, chLatin_E,
  123.     chLatin_F, chLatin_G, chLatin_H, chLatin_I, chLatin_J,
  124.     chLatin_K, chLatin_L, chLatin_M, chLatin_N, chLatin_O,
  125.     chLatin_P, chLatin_Q, chLatin_R, chLatin_S, chLatin_T,
  126.     chLatin_U, chLatin_V, chLatin_W, chLatin_X, chLatin_Y, chLatin_Z,
  127. chLatin_a, chLatin_b, chLatin_c, chLatin_d, chLatin_e,
  128. chLatin_f, chLatin_g, chLatin_h, chLatin_i, chLatin_j,
  129. chLatin_k, chLatin_l, chLatin_m, chLatin_n, chLatin_o,
  130. chLatin_p, chLatin_q, chLatin_r, chLatin_s, chLatin_t,
  131. chLatin_u, chLatin_v, chLatin_w, chLatin_x, chLatin_y, chLatin_z,
  132. chDigit_0, chDigit_1, chDigit_2, chDigit_3, chDigit_4,
  133. chDigit_5, chDigit_6, chDigit_7, chDigit_8, chDigit_9,
  134. chPlus, chForwardSlash, chNull
  135. };
  136. XMLByte Base64::base64Inverse[BASELENGTH];
  137. const XMLByte Base64::base64Padding = chEqual;
  138. bool Base64::isInitialized = false;
  139. /***
  140.  *
  141.  * Memory Management Issue:
  142.  *
  143.  * . For memory allocated for result returned to caller (external memory), 
  144.  *   the plugged memory manager is used if it is provided, otherwise global 
  145.  *   new used to retain the pre-memory-manager behaviour.
  146.  *
  147.  * . For memory allocated for temperary buffer (internal memory), 
  148.  *   XMLPlatformUtils::fgMemoryManager is used.
  149.  *
  150.  */
  151. static inline void* getExternalMemory(MemoryManager* const allocator
  152.                                     , unsigned int const   sizeToAllocate)
  153. {
  154.    return allocator ? allocator->allocate(sizeToAllocate)
  155.        : ::operator new(sizeToAllocate);
  156. }
  157. static inline void* getInternalMemory(unsigned int const   sizeToAllocate)
  158. {
  159.     return XMLPlatformUtils::fgMemoryManager->allocate(sizeToAllocate);
  160. }
  161. /***
  162.  * internal memory is deallocated by janitorArray
  163.  */ 
  164. static inline void returnExternalMemory(MemoryManager* const allocator
  165.                                       , void*                buffer)
  166. {
  167.     allocator ? allocator->deallocate(buffer)
  168.         : ::operator delete(buffer);
  169. }
  170. /**
  171.  *     E2-9
  172.  *
  173.  *     Canonical-base64Binary ::= (B64line* B64lastline)?
  174.  *
  175.  *      B64line ::= B64x15 B64x15 B64x15 B64x15 B64x15 B64 #xA
  176.  *                  76 Base64 characters followed by newline
  177.  *
  178.  *      B64x15  ::= B64 B64 B64 B64 B64
  179.  *                  B64 B64 B64 B64 B64
  180.  *                  B64 B64 B64 B64 B64
  181.  *
  182.  *      B64lastline ::= B64x4? B64x4? B64x4? B64x4?
  183.  *                      B64x4? B64x4? B64x4? B64x4?
  184.  *                      B64x4? B64x4? B64x4? B64x4?
  185.  *                      B64x4? B64x4? B64x4? B64x4?
  186.  *                      B64x4? B64x4?
  187.  *                      (B64x4 | (B64 B64 B16 '=') | (B64 B04 '=='))
  188.  *                      #xA
  189.  *
  190.  *      B64x4   ::= B64 B64 B64 B64
  191.  *      B04     ::= [AQgw]
  192.  *      B16     ::= [AEIMQUYcgkosw048]
  193. */
  194. // number of quadruplets per one line ( must be >1 and <19 )
  195. const unsigned int Base64::quadsPerLine = 15;
  196. XMLByte* Base64::encode(const XMLByte* const inputData
  197.                       , const unsigned int   inputLength
  198.                       , unsigned int*        outputLength
  199.                       , MemoryManager* const memMgr)
  200. {
  201.     if (!isInitialized)
  202.         init();
  203.     if (!inputData || !outputLength)
  204.         return 0;
  205.     int quadrupletCount = ( inputLength + 2 ) / 3;
  206.     if (quadrupletCount == 0)
  207.         return 0;
  208.     // number of rows in encoded stream ( including the last one )
  209.     int lineCount = ( quadrupletCount + quadsPerLine-1 ) / quadsPerLine;
  210.     //
  211.     // convert the triplet(s) to quadruplet(s)
  212.     //
  213.     XMLByte  b1, b2, b3, b4;  // base64 binary codes ( 0..63 )
  214.     unsigned int inputIndex = 0;
  215.     unsigned int outputIndex = 0;
  216.     XMLByte *encodedData = (XMLByte*) getExternalMemory(memMgr, (quadrupletCount*FOURBYTE+lineCount+1) * sizeof(XMLByte));
  217.     //
  218.     // Process all quadruplet(s) except the last
  219.     //
  220.     int quad = 1;
  221.     for (; quad <= quadrupletCount-1; quad++ )
  222.     {
  223.         // read triplet from the input stream
  224.         split1stOctet( inputData[ inputIndex++ ], b1, b2 );
  225.         split2ndOctet( inputData[ inputIndex++ ], b2, b3 );
  226.         split3rdOctet( inputData[ inputIndex++ ], b3, b4 );
  227.         // write quadruplet to the output stream
  228.         encodedData[ outputIndex++ ] = base64Alphabet[ b1 ];
  229.         encodedData[ outputIndex++ ] = base64Alphabet[ b2 ];
  230.         encodedData[ outputIndex++ ] = base64Alphabet[ b3 ];
  231.         encodedData[ outputIndex++ ] = base64Alphabet[ b4 ];
  232.         if (( quad % quadsPerLine ) == 0 )
  233.             encodedData[ outputIndex++ ] = chLF;
  234.     }
  235.     //
  236.     // process the last Quadruplet
  237.     //
  238.     // first octet is present always, process it
  239.     split1stOctet( inputData[ inputIndex++ ], b1, b2 );
  240.     encodedData[ outputIndex++ ] = base64Alphabet[ b1 ];
  241.     if( inputIndex < inputLength )
  242.     {
  243.         // second octet is present, process it
  244.         split2ndOctet( inputData[ inputIndex++ ], b2, b3 );
  245.         encodedData[ outputIndex++ ] = base64Alphabet[ b2 ];
  246.         if( inputIndex < inputLength )
  247.         {
  248.             // third octet present, process it
  249.             // no PAD e.g. 3cQl
  250.             split3rdOctet( inputData[ inputIndex++ ], b3, b4 );
  251.             encodedData[ outputIndex++ ] = base64Alphabet[ b3 ];
  252.             encodedData[ outputIndex++ ] = base64Alphabet[ b4 ];
  253.         }
  254.         else
  255.         {
  256.             // third octet not present
  257.             // one PAD e.g. 3cQ=
  258.             encodedData[ outputIndex++ ] = base64Alphabet[ b3 ];
  259.             encodedData[ outputIndex++ ] = base64Padding;
  260.         }
  261.     }
  262.     else
  263.     {
  264.         // second octet not present
  265.         // two PADs e.g. 3c==
  266.         encodedData[ outputIndex++ ] = base64Alphabet[ b2 ];
  267.         encodedData[ outputIndex++ ] = base64Padding;
  268.         encodedData[ outputIndex++ ] = base64Padding;
  269.     }
  270.     // write out end of the last line
  271.     encodedData[ outputIndex++ ] = chLF;
  272.     // write out end of string
  273.     encodedData[ outputIndex ] = 0;
  274.     *outputLength = outputIndex;
  275.     return encodedData;
  276. }
  277. //
  278. // delete the buffer allocated by decode() if
  279. // decoding is successfully done.
  280. //
  281. // In previous version, we use XMLString::strLen(decodedData)
  282. // to get the length, this will fail for test case containing
  283. // consequtive "A", such "AAFF", or "ab56AA56". Instead of
  284. // returning 3/6, we have 0 and 3, indicating that "AA", after
  285. // decoded, is interpreted as <null> by the strLen().
  286. //
  287. // Since decode() has track of length of the decoded data, we
  288. // will get this length from decode(), instead of strLen().
  289. //
  290. int Base64::getDataLength(const XMLCh* const inputData)
  291. {
  292.     unsigned int    retLen = 0;
  293.     XMLCh* decodedData = decode(inputData, &retLen);
  294.     if ( !decodedData )
  295.         return -1;
  296.     else
  297.     {
  298.         returnExternalMemory(0, decodedData);
  299.         return retLen;
  300.     }
  301. }
  302. //
  303. // return 0(null) if invalid data found.
  304. // return the buffer containning decoded data otherwise
  305. // the caller is responsible for the de-allocation of the
  306. // buffer returned.
  307. //
  308. // temporary data, rawInputData, is ALWAYS released by this function.
  309. //
  310. /***
  311.  *     E2-9
  312.  *
  313.  *     Base64Binary ::= S? B64quartet* B64final?
  314.  *
  315.  *     B64quartet   ::= B64 S? B64 S? B64 S? B64 S?
  316.  *
  317.  *     B64final     ::= B64 S? B04 S? '=' S? '=' S?
  318.  *                    | B64 S? B64 S? B16 S? '=' S?
  319.  *
  320.  *     B04          ::= [AQgw]
  321.  *     B16          ::= [AEIMQUYcgkosw048]
  322.  *     B64          ::= [A-Za-z0-9+/]
  323. */
  324. XMLByte* Base64::decode(const XMLByte* const inputData
  325.                       , unsigned int*        decodedLength
  326.                       , MemoryManager* const memMgr)
  327. {
  328.     if (!isInitialized)
  329.         init();
  330.     if ((!inputData) || (!*inputData))
  331.         return 0;
  332.     //
  333.     // remove all XML whitespaces from the base64Data
  334.     //
  335.     int inputLength = XMLString::stringLen( (const char* const)inputData );
  336.     XMLByte* rawInputData = (XMLByte*) getInternalMemory((inputLength+1) * sizeof(XMLByte));
  337.     ArrayJanitor<XMLByte> jan(rawInputData, XMLPlatformUtils::fgMemoryManager);
  338.     int inputIndex = 0;
  339.     int rawInputLength = 0;
  340.     bool inWhiteSpace = false;
  341.     while ( inputIndex < inputLength )
  342.     {
  343.         if (!XMLChar1_0::isWhitespace(inputData[inputIndex]))
  344.         {
  345.             rawInputData[ rawInputLength++ ] = inputData[ inputIndex ];
  346.             inWhiteSpace = false;
  347.         }
  348.         else
  349.         {
  350.             if (inWhiteSpace)
  351.                 return 0; // more than 1 whitespaces encountered
  352.             else
  353.                 inWhiteSpace = true;
  354.         }
  355.         inputIndex++;
  356.     }
  357.     rawInputData[ rawInputLength ] = 0;
  358.     // the length of raw data should be divisible by four
  359.     if (( rawInputLength % FOURBYTE ) != 0 )
  360.         return 0;
  361.     int quadrupletCount = rawInputLength / FOURBYTE;
  362.     if ( quadrupletCount == 0 )
  363.         return 0;
  364.     //
  365.     // convert the quadruplet(s) to triplet(s)
  366.     //
  367.     XMLByte  d1, d2, d3, d4;  // base64 characters
  368.     XMLByte  b1, b2, b3, b4;  // base64 binary codes ( 0..64 )
  369.     int rawInputIndex  = 0;
  370.     int outputIndex    = 0;
  371.     XMLByte *decodedData = (XMLByte*) getExternalMemory(memMgr, (quadrupletCount*3+1) * sizeof(XMLByte));
  372.     //
  373.     // Process all quadruplet(s) except the last
  374.     //
  375.     int quad = 1;
  376.     for (; quad <= quadrupletCount-1; quad++ )
  377.     {
  378.         // read quadruplet from the input stream
  379.         if (!isData( (d1 = rawInputData[ rawInputIndex++ ]) ) ||
  380.             !isData( (d2 = rawInputData[ rawInputIndex++ ]) ) ||
  381.             !isData( (d3 = rawInputData[ rawInputIndex++ ]) ) ||
  382.             !isData( (d4 = rawInputData[ rawInputIndex++ ]) ))
  383.         {
  384.             // if found "no data" just return NULL
  385.             returnExternalMemory(memMgr, decodedData);
  386.             return 0;
  387.         }
  388.         b1 = base64Inverse[ d1 ];
  389.         b2 = base64Inverse[ d2 ];
  390.         b3 = base64Inverse[ d3 ];
  391.         b4 = base64Inverse[ d4 ];
  392.         // write triplet to the output stream
  393.         decodedData[ outputIndex++ ] = set1stOctet(b1, b2);
  394.         decodedData[ outputIndex++ ] = set2ndOctet(b2, b3);
  395.         decodedData[ outputIndex++ ] = set3rdOctet(b3, b4);
  396.     }
  397.     //
  398.     // process the last Quadruplet
  399.     //
  400.     // first two octets are present always, process them
  401.     if (!isData( (d1 = rawInputData[ rawInputIndex++ ]) ) ||
  402.         !isData( (d2 = rawInputData[ rawInputIndex++ ]) ))
  403.     {
  404.         // if found "no data" just return NULL
  405.         returnExternalMemory(memMgr, decodedData);
  406.         return 0;
  407.     }
  408.     b1 = base64Inverse[ d1 ];
  409.     b2 = base64Inverse[ d2 ];
  410.     // try to process last two octets
  411.     d3 = rawInputData[ rawInputIndex++ ];
  412.     d4 = rawInputData[ rawInputIndex++ ];
  413.     if (!isData( d3 ) || !isData( d4 ))
  414.     {
  415.         // check if last two are PAD characters
  416.         if (isPad( d3 ) && isPad( d4 ))
  417.         {
  418.             // two PAD e.g. 3c==
  419.             if ((b2 & 0xf) != 0) // last 4 bits should be zero
  420.             {
  421.                 returnExternalMemory(memMgr, decodedData);
  422.                 return 0;
  423.             }
  424.             decodedData[ outputIndex++ ] = set1stOctet(b1, b2);
  425.         }
  426.         else if (!isPad( d3 ) && isPad( d4 ))
  427.         {
  428.             // one PAD e.g. 3cQ=
  429.             b3 = base64Inverse[ d3 ];
  430.             if (( b3 & 0x3 ) != 0 ) // last 2 bits should be zero
  431.             {
  432.                 returnExternalMemory(memMgr, decodedData);
  433.                 return 0;
  434.             }
  435.             decodedData[ outputIndex++ ] = set1stOctet( b1, b2 );
  436.             decodedData[ outputIndex++ ] = set2ndOctet( b2, b3 );
  437.         }
  438.         else
  439.         {
  440.             // an error like "3c[Pad]r", "3cdX", "3cXd", "3cXX" where X is non data
  441.             returnExternalMemory(memMgr, decodedData);
  442.             return 0;
  443.         }
  444.     }
  445.     else
  446.     {
  447.         // no PAD e.g 3cQl
  448.         b3 = base64Inverse[ d3 ];
  449.         b4 = base64Inverse[ d4 ];
  450.         decodedData[ outputIndex++ ] = set1stOctet( b1, b2 );
  451.         decodedData[ outputIndex++ ] = set2ndOctet( b2, b3 );
  452.         decodedData[ outputIndex++ ] = set3rdOctet( b3, b4 );
  453.     }
  454.     // write out the end of string
  455.     decodedData[ outputIndex ] = 0;
  456.     *decodedLength = outputIndex;
  457.     return decodedData;
  458. }
  459. XMLCh* Base64::decode(const XMLCh* const   inputData
  460.                     , unsigned int*        decodedLen
  461.                     , MemoryManager* const memMgr)
  462. {
  463. if (!inputData)
  464. return 0;
  465.     /***
  466.      *  Move input data to a XMLByte buffer
  467.      */
  468. unsigned int srcLen = XMLString::stringLen(inputData);
  469.     XMLByte *dataInByte = (XMLByte*) getInternalMemory((srcLen+1) * sizeof(XMLByte));
  470.     ArrayJanitor<XMLByte> janFill(dataInByte, XMLPlatformUtils::fgMemoryManager);
  471.     for (unsigned int i = 0; i < srcLen; i++)
  472. dataInByte[i] = (XMLByte)inputData[i];
  473. dataInByte[srcLen] = 0;
  474.     /***
  475.      * Forward to the actual decoding method to do the decoding
  476.      */
  477. *decodedLen = 0;
  478. XMLByte *DecodedBuf = decode(dataInByte, decodedLen, memMgr);
  479. if (!DecodedBuf)
  480. return 0;
  481.     /***
  482.      * Move decoded data to a XMLCh buffer to return
  483.      */
  484.     XMLCh *toRet = (XMLCh*) getExternalMemory(memMgr, (*decodedLen+1) * sizeof(XMLCh));
  485.                
  486.     for (unsigned int j = 0; j < *decodedLen; j++)
  487. toRet[j] = (XMLCh)DecodedBuf[j];
  488. toRet[*decodedLen] = 0;
  489.     /***
  490.      * Release the memory allocated in the actual decoding method
  491.      */ 
  492.     returnExternalMemory(memMgr, DecodedBuf);
  493.     return toRet;
  494. }
  495. // -----------------------------------------------------------------------
  496. //  Helper methods
  497. // -----------------------------------------------------------------------
  498. void Base64::init()
  499. {
  500.     if (isInitialized)
  501.         return;
  502.     isInitialized = true;
  503.     // create inverse table for base64 decoding
  504.     // if base64Alphabet[ 17 ] = 'R', then base64Inverse[ 'R' ] = 17
  505.     // for characters not in base64Alphabet the base64Inverse[] = -1
  506.     int i;
  507.     // set all fields to -1
  508.     for ( i = 0; i < BASELENGTH; i++ )
  509.         base64Inverse[i] = (XMLByte)-1;
  510.     // compute inverse table
  511.     for ( i = 0; i < 64; i++ )
  512.         base64Inverse[ base64Alphabet[i] ] = (XMLByte)i;
  513. }
  514. bool Base64::isData(const XMLByte& octet)
  515. {
  516.     return (base64Inverse[octet]!=(XMLByte)-1);
  517. }
  518. XERCES_CPP_NAMESPACE_END