//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////////// #include "Base64.h" #include PEGASUS_NAMESPACE_BEGIN PEGASUS_USING_STD; #ifdef PEGASUS_PLATFORM_AIX_RS_IBMCXX #define inline #endif //********************************************************** /* Encode thanslates one six-bit pattern into a base-64 character. Unsigned char is used to represent a six-bit stream of date. */ inline PEGASUS_COMMON_LINKAGE char Base64::_Encode(Uint8 uc) { if (uc < 26) return 'A'+uc; if (uc < 52) return 'a'+(uc-26); if (uc < 62) return '0'+(uc-52); if (uc == 62) return '+'; return '/'; } // Helper function returns true is a character is a valid base-64 character // and false otherwise. inline Boolean Base64::_IsBase64(char c) { if (c >= 'A' && c <= 'Z') return true; if (c >= 'a' && c <= 'z') return true; if (c >= '0' && c <= '9') return true; if (c == '+') return true; if (c == '/') return true; if (c == '=') return true; return false; } // Translate one base-64 character into a six bit pattern inline Uint8 Base64::_Decode(char c) { if (c >= 'A' && c <= 'Z') return c - 'A'; if (c >= 'a' && c <= 'z') return c - 'a' + 26; if (c >= '0' && c <= '9') return c - '0' + 52; if (c == '+') return 62; return 63; } //************************************************************* /* Encode static method takes an array of 8-bit values and returns a base-64 stream. ATTN: KS feb 2002 - This is probably a very slow an inefficient implementation and could be improved if it is required for production. Today it is only for test programs. */ Buffer Base64::encode(const Buffer& vby) { Buffer retArray; // If nothing in input string, return empty string if (vby.size() == 0) return retArray; // for every character in the input array taken 3 bytes at a time for (Uint32 i=0; i < vby.size(); i+=3) { // Create from 3 8 bit values to 4 6 bit values Uint8 by1=0,by2=0,by3=0; by1 = vby[i]; if (i+1>2; by5 = ((by1&0x3)<<4)|(by2>>4); by6 = ((by2&0xf)<<2)|(by3>>6); by7 = by3&0x3f; retArray.append(_Encode(by4)); retArray.append(_Encode(by5)); if (i+1((by1<<2)|(by2>>4)) ); // append second byte if not padding if (c3 != '=') retArray.append( static_cast(((by2&0xf)<<4)|(by3>>2)) ); if (c4 != '=') retArray.append( static_cast(((by3&0x3)<<6)|by4) ); } return retArray; } PEGASUS_NAMESPACE_END