(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.26 and 1.26.28.1

version 1.26, 2006/11/07 21:30:36 version 1.26.28.1, 2008/07/01 15:17:55
Line 61 
Line 61 
         return '+';         return '+';
  
     return '/';     return '/';
 };  }
  
 // Helper function returns true is a character is a valid base-64 character // Helper function returns true is a character is a valid base-64 character
 // and false otherwise. // and false otherwise.
Line 88 
Line 88 
         return true;         return true;
  
     return false;     return false;
 };  }
  
  // Translate one base-64 character into a six bit pattern  // Translate one base-64 character into a six bit pattern
 inline Uint8 Base64::_Decode(char c) inline Uint8 Base64::_Decode(char c)
Line 105 
Line 105 
         return 62;         return 62;
  
     return 63;     return 63;
 };  }
  
  
 //************************************************************* //*************************************************************
Line 167 
Line 167 
     };     };
  
     return retArray;     return retArray;
 };  }
  
 /* /*
     I checked for the zero length. The algorithm would also work for zero     I checked for the zero length. The algorithm would also work for zero
Line 238 
Line 238 
  
  
     return retArray;     return retArray;
 };  }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.26  
changed lines
  Added in v.1.26.28.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2