(file) Return to Base64.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Base64.cpp between version 1.2 and 1.3

version 1.2, 2002/02/07 15:21:57 version 1.3, 2002/02/07 18:57:42
Line 30 
Line 30 
 #include "Base64.h" #include "Base64.h"
 #include <cassert> #include <cassert>
 #include <strstream> #include <strstream>
   #include <string>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
 #include <Pegasus/Common/Base64.h> #include <Pegasus/Common/Base64.h>
 #include <Pegasus/Common/Array.h> #include <Pegasus/Common/Array.h>
Line 105 
Line 106 
 inline Array<Uint8> Base64::decode(const Array<Sint8> strInput) inline Array<Uint8> Base64::decode(const Array<Sint8> strInput)
 { {
     //Strip any non-base64 characters from the input     //Strip any non-base64 characters from the input
     std::string str;      PEGASUS_STD(string) str;
     for (Uint32 j=0;j<strInput.size();j++)     for (Uint32 j=0;j<strInput.size();j++)
     {     {
         if (_IsBase64(strInput[j]))         if (_IsBase64(strInput[j]))


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2