Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include <tconvbase64.h>
23 EXPORT_C TBase64::TBase64(): iShiftStored(0), iMaskShiftStored(ESix)
28 Encodes an ASCII string to Base64 string.
30 @param aSrcString The source string in ASCII code.
31 @param rDestString The destination string with converted base64 values.
32 @return Number of characters in the source string that were not Encoded.
34 EXPORT_C TInt TBase64::Encode(const TDesC8& aSrcString, TDes8& rDestString)
36 // Clears the destination string
38 // Initialise variables
39 const TUint8* srcStringPtr=aSrcString.Ptr();
40 const TUint8* srcStringEnd=aSrcString.Length()+srcStringPtr;
41 TUint8* destStringPtr=(TUint8*)rDestString.Ptr();
42 TUint8* destStringPtrBase=destStringPtr;
47 TInt destStringCharNum = 0;
49 while(srcStringPtr<=srcStringEnd)
51 // maskShift is used as a char read counter
54 // If the 3rd char read is also the last char then the while loop
55 // is broken on the next check.
56 if(srcStringPtr==srcStringEnd)
63 if(srcStringPtr==srcStringEnd)
66 character=*srcStringPtr;
69 // Shifts charStorage ready for the next char
70 charStorage=charStorage<<8;
73 charStorage=charStorage|character;
74 // Shifts the mask to the correct bit location
75 // Masks (AND's) the valid bits from charStorage
76 // Shifts the valid bits into the low order 8bits
77 // Converts to BASE64 char, Casts the result to an unsigned char (which it should be ?....I hope)
78 encodedChar=(TUint8)Base64ToAscii[((charStorage>>maskShift)&ESixBitMask)];
80 *destStringPtr++=encodedChar;
83 // Add a CRLF every KMaxB64EncodedCharsPerLine characters so as not to exceed the line length
84 // limitation specified in RFC 2822.
85 if (destStringCharNum == KMaxB64EncodedCharsPerLine)
87 destStringCharNum = 0;
88 *destStringPtr++ = '\r';
89 *destStringPtr++ = '\n';
93 // Check for not enough chars and pad if required
96 *destStringPtr++=KImcvConvEquals;
97 *destStringPtr++=KImcvConvEquals;
101 *destStringPtr++=KImcvConvEquals;
103 rDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
104 return ((TInt)(srcStringPtr-srcStringEnd));
108 Decodes the Base64 string to ASCII pattern.
110 @param aSrcString The source string in Base64 codeset.
111 @param rDestString The destination string with converted ASCII code values.
112 @return ETrue if aSrcString is not long enough to decode fully, resulting in the storage of
113 the last character and requiring another aSrcString (poss 0 length) to be passed to it to clear this character.
114 Returns EFalse if the line was decoded OK or the end of the encoded file is reached ie "="
116 EXPORT_C TBool TBase64::Decode(const TDesC8& aSrcString, TDes8& rDestString)
120 TUint8 decodedChar=0;
122 // Clears the destination string
125 // Initialise variables
126 const TUint8* srcStringPtr=aSrcString.Ptr();
127 const TUint8* srcStringEnd=aSrcString.Length()+srcStringPtr;
128 TUint8* destStringPtr=(TUint8*)rDestString.Ptr();
129 TUint8* destStringPtrBase=destStringPtr;
131 TInt maskShift=iMaskShiftStored;
132 TInt shiftStorage=iShiftStored;
134 // Main character process loop
135 while(srcStringPtr<srcStringEnd)
137 offsetChar=(TInt8)(*srcStringPtr-KImcvLookUpStartOffset);
140 // Check for valid B64 character
141 if((offsetChar>=0)&&(offsetChar<80))
143 // Read in next character and B64 decode
144 decodedInt=AsciiToBase64[offsetChar];
146 // Exits when a PAD char is reached
147 if(decodedInt==EPadChar)
149 rDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
153 // Ensures the first 2 chars of 4 are received before processing
158 shiftStorage=shiftStorage<<ESix;
159 shiftStorage=shiftStorage|decodedInt;
160 decodedChar=(TUint8)((shiftStorage>>maskShift)&EEightBitMask);
162 if((maskShift-=ETwo)<EZero)
165 *destStringPtr++=decodedChar;
167 shiftStorage=decodedInt;
170 iShiftStored=shiftStorage;
171 iMaskShiftStored=maskShift;
173 rDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
175 return maskShift<ESix;
180 Encodes an ASCII string to Base64 string.
182 @param aSrcString The source string in ASCII.
183 @param aDestString The destination string with converted base64 values.
184 @param aLineLength The maximum line length of the encoded base64 values.
185 A CR/LF sequence will be added after these many characters.
186 The default value is -1, which means no CR/LF is added to output. The encoding is compliant with RFC 4648
187 @return Number of characters in the source string that were not encoded.
189 EXPORT_C TInt TBase64::PortableEncode(const TDesC8& aSrcString, TDes8& aDestString, TInt aLineLength)
191 // Clears the destination string
193 // Initialise variables
194 const TUint8* srcStringPtr=aSrcString.Ptr();
195 const TUint8* srcStringEnd=aSrcString.Length()+srcStringPtr;
196 TUint8* destStringPtr=(TUint8*)aDestString.Ptr();
197 TUint8* destStringPtrBase=destStringPtr;
199 TUint8 encodedChar=0;
201 TInt maskShift=EZero;
202 TInt destStringCharNum = 0;
204 while(srcStringPtr<=srcStringEnd)
206 // maskShift is used as a char read counter
209 // If the 3rd char read is also the last char then the while loop
210 // is broken on the next check.
211 if(srcStringPtr==srcStringEnd)
218 if(srcStringPtr==srcStringEnd)
221 character=*srcStringPtr;
224 // Shifts charStorage ready for the next char
225 charStorage=charStorage<<8;
228 charStorage=charStorage|character;
229 // Shifts the mask to the correct bit location
230 // Masks (AND's) the valid bits from charStorage
231 // Shifts the valid bits into the low order 8bits
232 // Converts to BASE64 char, Casts the result to an unsigned char (which it should be ?....I hope)
233 encodedChar=(TUint8)Base64ToAscii[((charStorage>>maskShift)&ESixBitMask)];
235 *destStringPtr++=encodedChar;
238 // Add a CRLF every aLineLength number of characters
239 if (destStringCharNum == aLineLength)
241 destStringCharNum = 0;
242 *destStringPtr++ = '\r';
243 *destStringPtr++ = '\n';
247 // Check for not enough chars and pad if required
248 if (maskShift==EFour)
250 *destStringPtr++=KImcvConvEquals;
251 *destStringPtr++=KImcvConvEquals;
255 *destStringPtr++=KImcvConvEquals;
257 aDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
258 return ((TInt)(srcStringPtr-srcStringEnd));